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",
|
2020-07-31 23:19:43 +02:00
|
|
|
"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"]
|
|
|
|
}
|
|
|
|
],
|
2020-07-31 23:19:43 +02:00
|
|
|
"manifest_version": 2,
|
2020-08-02 20:00:38 +02:00
|
|
|
"options_ui": {
|
|
|
|
"page": "options.html",
|
|
|
|
"open_in_tab": false
|
2020-08-05 08:23:21 +02:00
|
|
|
},
|
|
|
|
"web_accessible_resources": [
|
|
|
|
"defaultlist.json"
|
|
|
|
]
|
2020-07-31 22:57:32 +02:00
|
|
|
}
|