migliori-alternative/manifest.json

28 lines
686 B
JSON
Raw Normal View History

2020-07-31 22:57:32 +02:00
{
"name": "Better",
2020-08-06 23:48:49 +02:00
"version": "0.0.1",
"icons": {
"48": "images/48.png",
"128": "images/128.png"
},
2020-07-31 22:57:32 +02:00
"description": "Find better products & services than the one you're currently visiting",
"permissions": ["activeTab", "storage"],
2020-07-31 22:57:32 +02:00
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"js": ["contentscript.js"]
}
],
"manifest_version": 2,
2020-08-02 20:00:38 +02:00
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"web_accessible_resources": [
"defaultlist.json"
]
2020-07-31 22:57:32 +02:00
}