blob: 2927deb4c1c58066e11df2924af40cbc92225e1d [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",
avm999636c357302020-08-09 19:54:08 +02005#if defined(CHROMIUM)
avm99963666575f2020-08-08 15:40:39 +02006 "version_name": "dirty",
avm999636c357302020-08-09 19:54:08 +02007#endif
avm99963a3d1ef32019-03-30 23:33:29 +01008 "description": "__MSG_appDescription__",
avm99963847ee632019-03-27 00:57:44 +01009 "icons": {
avm99963d8498752019-03-27 01:09:56 +010010 "512": "icons/512.png",
11 "128": "icons/128.png"
avm99963847ee632019-03-27 00:57:44 +010012 },
13 "content_scripts": [
14 {
15 "matches": ["https://support.google.com/s/community*"],
16 "js": ["console_inject.js"]
17 },
18 {
avm999636d9c5fe2019-06-04 00:35:53 +020019 "matches": ["https://support.google.com/s/community*"],
20 "js": ["console_inject_start.js"],
21 "run_at": "document_start"
22 },
23 {
avm99963847ee632019-03-27 00:57:44 +010024 "matches": ["https://support.google.com/*/threads*"],
avm99963c2e7db32019-03-27 23:49:05 +010025 "js": ["forum_inject.js"]
avm99963cbea3142019-03-28 00:48:15 +010026 },
27 {
28 "matches": ["https://support.google.com/*/thread/*"],
avm99963134f1ef2019-03-30 19:05:27 +010029 "js": ["thread_inject.js"],
30 "run_at": "document_end"
avm99963d0757252019-03-30 20:13:00 +010031 },
32 {
33 "matches": ["https://support.google.com/*/profile/*"],
34 "js": ["profile_inject.js"]
avm99963847ee632019-03-27 00:57:44 +010035 }
36 ],
37 "permissions": [
38 "https://support.google.com/s/community*",
avm99963cbea3142019-03-28 00:48:15 +010039 "https://support.google.com/*/threads*",
40 "https://support.google.com/*/thread/*",
41 "storage"
42 ],
avm999631a1d2b72020-08-20 03:15:20 +020043 "browser_action": {},
avm999636c357302020-08-09 19:54:08 +020044#if defined(CHROMIUM)
avm99963cbea3142019-03-28 00:48:15 +010045 "options_page": "options.html",
avm999636c357302020-08-09 19:54:08 +020046#endif
avm99963cbea3142019-03-28 00:48:15 +010047 "options_ui": {
48 "page": "options.html",
avm999636c357302020-08-09 19:54:08 +020049#if defined(CHROMIUM)
avm99963cbea3142019-03-28 00:48:15 +010050 "chrome_style": true,
avm999636c357302020-08-09 19:54:08 +020051#endif
52#if defined(GECKO)
53 "browser_style": true,
54#endif
avm99963cbea3142019-03-28 00:48:15 +010055 "open_in_tab": false
56 },
57 "background": {
avm999636c357302020-08-09 19:54:08 +020058#if defined(CHROMIUM)
59 "persistent": false,
60#endif
61 "scripts": ["background.js"]
avm99963a3d1ef32019-03-30 23:33:29 +010062 },
avm999636c357302020-08-09 19:54:08 +020063#if defined(GECKO)
64 "browser_specific_settings": {
65 "gecko": {
66 "id": "twpowertools@avm99963.com",
67 "strict_min_version": "55.0"
68 }
69 },
70#endif
avm99963a3d1ef32019-03-30 23:33:29 +010071 "default_locale": "en"
avm999636a7cbcb2019-03-27 01:16:28 +010072}