blob: abd0e7511acc92eff190b91391e15186ee4cab06 [file] [log] [blame]
avm99963847ee632019-03-27 00:57:44 +01001{
2 "manifest_version": 2,
avm99963a3d1ef32019-03-30 23:33:29 +01003 "name": "__MSG_appName__",
avm9996398f22dc2020-07-14 18:27:24 +02004 "version": "0.7.1",
avm99963a3d1ef32019-03-30 23:33:29 +01005 "description": "__MSG_appDescription__",
avm99963847ee632019-03-27 00:57:44 +01006 "icons": {
avm99963d8498752019-03-27 01:09:56 +01007 "512": "icons/512.png",
8 "128": "icons/128.png"
avm99963847ee632019-03-27 00:57:44 +01009 },
10 "content_scripts": [
11 {
12 "matches": ["https://support.google.com/s/community*"],
13 "js": ["console_inject.js"]
14 },
15 {
avm999636d9c5fe2019-06-04 00:35:53 +020016 "matches": ["https://support.google.com/s/community*"],
17 "js": ["console_inject_start.js"],
18 "run_at": "document_start"
19 },
20 {
avm99963847ee632019-03-27 00:57:44 +010021 "matches": ["https://support.google.com/*/threads*"],
avm99963c2e7db32019-03-27 23:49:05 +010022 "js": ["forum_inject.js"]
avm99963cbea3142019-03-28 00:48:15 +010023 },
24 {
25 "matches": ["https://support.google.com/*/thread/*"],
avm99963134f1ef2019-03-30 19:05:27 +010026 "js": ["thread_inject.js"],
27 "run_at": "document_end"
avm99963d0757252019-03-30 20:13:00 +010028 },
29 {
30 "matches": ["https://support.google.com/*/profile/*"],
31 "js": ["profile_inject.js"]
avm99963847ee632019-03-27 00:57:44 +010032 }
33 ],
34 "permissions": [
35 "https://support.google.com/s/community*",
avm99963cbea3142019-03-28 00:48:15 +010036 "https://support.google.com/*/threads*",
37 "https://support.google.com/*/thread/*",
38 "storage"
39 ],
40 "options_page": "options.html",
41 "options_ui": {
42 "page": "options.html",
43 "chrome_style": true,
44 "open_in_tab": false
45 },
46 "background": {
47 "scripts": ["background.js"],
48 "persistent": false
avm99963a3d1ef32019-03-30 23:33:29 +010049 },
50 "default_locale": "en"
avm999636a7cbcb2019-03-27 01:16:28 +010051}