blob: 0b753d8f93d6e07134dd491d186377a186de32c9 [file] [log] [blame]
avm99963847ee632019-03-27 00:57:44 +01001{
2 "manifest_version": 2,
avm99963a3d1ef32019-03-30 23:33:29 +01003 "name": "__MSG_appName__",
avm99963666575f2020-08-08 15:40:39 +02004 "version": "0",
5 "version_name": "dirty",
avm99963a3d1ef32019-03-30 23:33:29 +01006 "description": "__MSG_appDescription__",
avm99963847ee632019-03-27 00:57:44 +01007 "icons": {
avm99963d8498752019-03-27 01:09:56 +01008 "512": "icons/512.png",
9 "128": "icons/128.png"
avm99963847ee632019-03-27 00:57:44 +010010 },
11 "content_scripts": [
12 {
13 "matches": ["https://support.google.com/s/community*"],
14 "js": ["console_inject.js"]
15 },
16 {
avm999636d9c5fe2019-06-04 00:35:53 +020017 "matches": ["https://support.google.com/s/community*"],
18 "js": ["console_inject_start.js"],
19 "run_at": "document_start"
20 },
21 {
avm99963847ee632019-03-27 00:57:44 +010022 "matches": ["https://support.google.com/*/threads*"],
avm99963c2e7db32019-03-27 23:49:05 +010023 "js": ["forum_inject.js"]
avm99963cbea3142019-03-28 00:48:15 +010024 },
25 {
26 "matches": ["https://support.google.com/*/thread/*"],
avm99963134f1ef2019-03-30 19:05:27 +010027 "js": ["thread_inject.js"],
28 "run_at": "document_end"
avm99963d0757252019-03-30 20:13:00 +010029 },
30 {
31 "matches": ["https://support.google.com/*/profile/*"],
32 "js": ["profile_inject.js"]
avm99963847ee632019-03-27 00:57:44 +010033 }
34 ],
35 "permissions": [
36 "https://support.google.com/s/community*",
avm99963cbea3142019-03-28 00:48:15 +010037 "https://support.google.com/*/threads*",
38 "https://support.google.com/*/thread/*",
39 "storage"
40 ],
41 "options_page": "options.html",
42 "options_ui": {
43 "page": "options.html",
44 "chrome_style": true,
45 "open_in_tab": false
46 },
47 "background": {
48 "scripts": ["background.js"],
49 "persistent": false
avm99963a3d1ef32019-03-30 23:33:29 +010050 },
51 "default_locale": "en"
avm999636a7cbcb2019-03-27 01:16:28 +010052}