1
0
Fork 0

add sync feature.

name -> Custom JavaScript for Websites 2
version -> 2.2.0
This commit is contained in:
xcv58 2015-04-15 16:06:29 -04:00 committed by Lukas Winkler
parent 8b7d62f0d3
commit 67cd276706

25
extension/manifest.json Normal file
View file

@ -0,0 +1,25 @@
{
"manifest_version": 2,
"name": "Custom JavaScript for Websites 2",
"short_name": "customjs",
"version": "2.2.0",
"author": "xcv58",
"description": "Run custom JavaScript on any website.",
"icons": {
"128": "img/icon_128.png"
},
"content_scripts": [ {
"js": [ "lib/api.js" ],
"matches": [ "\u003Call_urls>" ]
}, {
"all_frames": true,
"js": [ "lib/run.js" ],
"matches": [ "\u003Call_urls>" ]
} ],
"browser_action": {
"default_icon": "img/icon.png",
"default_popup": "popup.html"
},
"content_security_policy": "script-src 'self' https://*.googleapis.com; object-src 'self'",
"permissions": [ "storage", "http://*/", "https://*/", "tabs" ]
}