rnotes-online/browser-extension/manifest.json

38 lines
798 B
JSON

{
"manifest_version": 3,
"name": "rNotes Web Clipper",
"version": "1.0.0",
"description": "Clip pages, text, links, and images to rNotes.online",
"permissions": [
"activeTab",
"contextMenus",
"storage",
"notifications"
],
"host_permissions": [
"https://rnotes.online/*",
"https://encryptid.jeffemmett.com/*",
"*://*/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
},
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
}