CustomWeb/manifest.json
2024-12-25 23:04:55 +00:00

33 lines
789 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": "1.0.0.2",
"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"
}
}