Scaffold browser capture extension

This commit is contained in:
2026-06-27 13:44:19 +08:00
parent fecf61a375
commit 44ca183f50
15 changed files with 599 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"manifest_version": 2,
"name": "Verstak Capture",
"version": "0.1.0",
"description": "Send pages, selections, and links to the local Verstak browser inbox.",
"permissions": ["contextMenus", "storage", "tabs", "http://127.0.0.1/*", "http://localhost/*"],
"background": {
"scripts": ["protocol.js", "api.js", "queue.js", "background.js"]
},
"browser_action": {
"default_popup": "popup/popup.html",
"default_title": "Verstak Capture"
}
}