Files
chrometophone/extension/manifest.json
2013-11-19 04:38:59 +00:00

39 lines
972 B
JSON

{
"update_url":"http://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "__MSG_app_name__",
"description": "__MSG_app_desc__",
"version": "2.3.3",
"default_locale": "en",
"icons": {
"16": "icon_16.png",
"128": "icon_128.png"
},
"minimum_chrome_version": "6.0.0",
"options_page": "help.html",
"browser_action": {
"default_title": "__MSG_app_name__",
"default_icon": "icon_19.png",
"default_popup": "popup.html"
},
"background": {
"persistent": false,
"scripts": [
"channel.js",
"chrome_ex_oauthsimple.js",
"chrome_ex_oauth.js",
"send_logic.js",
"background.js"
]
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": [
"contextMenus", "tabs", "http://*/*", "https://*/*"
],
"web_accessible_resources": [
"chrome_ex_oauth.html",
"chrome_ex_oauthsimple.html",
"oauth_interstitial.html"
]
}