Init from Manwell

This commit is contained in:
nazrin 2024-12-25 23:04:55 +00:00
commit 4ec6d1e14f
25 changed files with 1369 additions and 0 deletions

33
manifest.json Normal file
View file

@ -0,0 +1,33 @@
{
"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"
}
}