mirror of
https://github.com/nileshtrivedi/better
synced 2025-01-04 01:09:22 +01:00
24 lines
603 B
JSON
24 lines
603 B
JSON
{
|
|
"name": "Better",
|
|
"version": "0.1",
|
|
"description": "Find better products & services than the one you're currently visiting",
|
|
"permissions": ["activeTab", "storage"],
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"persistent": false
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://*/*", "http://*/*"],
|
|
"js": ["contentscript.js"]
|
|
}
|
|
],
|
|
"manifest_version": 2,
|
|
"options_ui": {
|
|
"page": "options.html",
|
|
"open_in_tab": false
|
|
},
|
|
"web_accessible_resources": [
|
|
"defaultlist.json"
|
|
]
|
|
} |