CrowdProof-Observe-Firefox/manifest.json

53 lines
974 B
JSON

{
"manifest_version": 2,
"name": "CrowdProof Observe",
"version": "1.0.0",
"description": "Send observations to CrowdProof from any webpage",
"permissions": [
"storage",
"activeTab",
"cookies",
"theme",
"contextMenus",
"menus",
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "crowdproof-observe@silogroup.org"
}
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"sidebar_action": {
"default_icon": {
"48": "icons/icon-48.png"
},
"default_title": "CrowdProof Observe",
"default_panel": "sidebar/sidebar.html"
},
"browser_action": {
"default_icon": {
"48": "icons/icon-48.png"
},
"default_title": "Toggle CrowdProof Observe"
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"background": {
"scripts": ["background/background.js"]
}
}