Files
stash/extension/manifest.json

16 lines
427 B
JSON
Raw Normal View History

{
"manifest_version": 3,
"name": "stash",
"version": "0.1.0",
"description": "Send the current page to your self-hosted stash read-later.",
"permissions": ["activeTab", "scripting", "storage", "contextMenus", "notifications"],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Send to stash"
},
"options_page": "options.html"
}