Init from Manwell
This commit is contained in:
commit
4ec6d1e14f
25 changed files with 1369 additions and 0 deletions
33
manifest.json
Normal file
33
manifest.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue