Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"description": "",
"default_locale": "en",
"version": "0.1.01",
"manifest_version": 2,
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"jquery.min.js",
"contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "options.html"
},
"background": {
"scripts": [
"backgroundscript.js",
"hot-reload.js"
]
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"storage",
"unlimitedStorage",
"https:\/\/www.googleapis.com\/"
],
"web_accessible_resources": [
"*.*"
]
}