blob: ad627250be503bc5993963788b024f4ec148a665 [file] [log] [blame]
{
"manifest_version": 2,
"name": "__MSG_appName__",
"version": "0.2.0",
"description": "__MSG_appDescription__",
"icons": {
"512": "icons/512.png",
"128": "icons/128.png"
},
"content_scripts": [
{
"matches": ["https://support.google.com/s/community*"],
"js": ["console_inject.js"]
},
{
"matches": ["https://support.google.com/*/threads*"],
"js": ["forum_inject.js"]
},
{
"matches": ["https://support.google.com/*/thread/*"],
"js": ["thread_inject.js"],
"run_at": "document_end"
},
{
"matches": ["https://support.google.com/*/profile/*"],
"js": ["profile_inject.js"]
}
],
"permissions": [
"https://support.google.com/s/community*",
"https://support.google.com/*/threads*",
"https://support.google.com/*/thread/*",
"storage"
],
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"chrome_style": true,
"open_in_tab": false
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"default_locale": "en"
}