39 lines
809 B
JSON
39 lines
809 B
JSON
{
|
|
"name": "Custom Web",
|
|
"description": "Customize web pages with scripts and styles",
|
|
"icons": {
|
|
"16": "img/icon16.png",
|
|
"48": "img/icon48.png",
|
|
"128": "img/icon128.png"
|
|
},
|
|
"version": "2.0.0",
|
|
"manifest_version": 2,
|
|
"permissions" : ["storage"],
|
|
"background": {
|
|
"scripts": ["js/storage.js", "js/file.js", "background.js"],
|
|
"persistent": false
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"all_frames": true,
|
|
"run_at": "document_start",
|
|
"js": [
|
|
"js/storage.js",
|
|
"js/file.js",
|
|
"content.js"
|
|
]
|
|
}
|
|
],
|
|
"browser_action": {
|
|
"default_title": "Custom Web",
|
|
"default_icon": "img/icon128.png",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "tanyaCustomWeb@git.sylvie.moe",
|
|
"strict_min_version": "58.0"
|
|
}
|
|
}
|
|
}
|