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
+15
View File
@@ -0,0 +1,15 @@
{
"manifest_version": 3,
"name": "Verstak Capture",
"version": "0.1.0",
"description": "Send pages, selections, and links to the local Verstak browser inbox.",
"permissions": ["contextMenus", "storage", "tabs"],
"host_permissions": ["http://127.0.0.1/*", "http://localhost/*"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup/popup.html",
"default_title": "Verstak Capture"
}
}