migliori-alternative/manifest.json

21 lines
537 B
JSON
Raw Normal View History

2020-07-31 22:57:32 +02:00
{
"name": "Better",
"version": "0.1",
"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
}
2020-07-31 22:57:32 +02:00
}