blob: 60c3feb75b0d7822396bc222345cc26f58517289 [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*"],
avm99963943b8492020-08-31 23:40:43 +020016 "js": ["common/content_scripts.js", "content_scripts/console_inject.js"]
avm99963847ee632019-03-27 00:57:44 +010017 },
18 {
avm999636d9c5fe2019-06-04 00:35:53 +020019 "matches": ["https://support.google.com/s/community*"],
avm99963a560aba2020-08-31 13:32:29 +020020 "js": ["content_scripts/console_inject_start.js"],
avm999636d9c5fe2019-06-04 00:35:53 +020021 "run_at": "document_start"
22 },
23 {
avm99963847ee632019-03-27 00:57:44 +010024 "matches": ["https://support.google.com/*/threads*"],
avm99963a560aba2020-08-31 13:32:29 +020025 "js": ["content_scripts/forum_inject.js"]
avm99963cbea3142019-03-28 00:48:15 +010026 },
27 {
28 "matches": ["https://support.google.com/*/thread/*"],
avm99963943b8492020-08-31 23:40:43 +020029 "js": ["common/content_scripts.js", "content_scripts/thread_inject.js"],
avm99963134f1ef2019-03-30 19:05:27 +010030 "run_at": "document_end"
avm99963d0757252019-03-30 20:13:00 +010031 },
32 {
avm99963ad65e752020-09-01 00:13:59 +020033 "matches": ["https://support.google.com/s/community*", "https://support.google.com/*/thread/*"],
34 "js": ["common/content_scripts.js", "content_scripts/profileindicator_inject.js"]
35 },
36 {
avm99963d0757252019-03-30 20:13:00 +010037 "matches": ["https://support.google.com/*/profile/*"],
avm99963a560aba2020-08-31 13:32:29 +020038 "js": ["content_scripts/profile_inject.js"]
avm99963847ee632019-03-27 00:57:44 +010039 }
40 ],
41 "permissions": [
42 "https://support.google.com/s/community*",
avm99963cbea3142019-03-28 00:48:15 +010043 "https://support.google.com/*/threads*",
44 "https://support.google.com/*/thread/*",
45 "storage"
46 ],
avm99963129fb502020-08-28 05:18:53 +020047 "web_accessible_resources": [
avm99963e51444e2020-08-31 14:50:06 +020048 "injections/profileindicator_inject.js",
49 "injections/profileindicator_inject.css"
avm99963129fb502020-08-28 05:18:53 +020050 ],
avm999631a1d2b72020-08-20 03:15:20 +020051 "browser_action": {},
avm999636c357302020-08-09 19:54:08 +020052#if defined(CHROMIUM)
avm99963cbea3142019-03-28 00:48:15 +010053 "options_page": "options.html",
avm999636c357302020-08-09 19:54:08 +020054#endif
avm99963cbea3142019-03-28 00:48:15 +010055 "options_ui": {
56 "page": "options.html",
avm999636c357302020-08-09 19:54:08 +020057#if defined(CHROMIUM)
avm99963cbea3142019-03-28 00:48:15 +010058 "chrome_style": true,
avm999636c357302020-08-09 19:54:08 +020059#endif
60#if defined(GECKO)
61 "browser_style": true,
62#endif
avm99963cbea3142019-03-28 00:48:15 +010063 "open_in_tab": false
64 },
65 "background": {
avm999636c357302020-08-09 19:54:08 +020066#if defined(CHROMIUM)
67 "persistent": false,
68#endif
avm999634c1a6792020-08-31 21:30:42 +020069 "scripts": [
70 "common/common.js",
71 "background.js"
72 ]
avm99963a3d1ef32019-03-30 23:33:29 +010073 },
avm999636c357302020-08-09 19:54:08 +020074#if defined(GECKO)
75 "browser_specific_settings": {
76 "gecko": {
77 "id": "twpowertools@avm99963.com",
78 "strict_min_version": "55.0"
79 }
80 },
81#endif
avm99963a3d1ef32019-03-30 23:33:29 +010082 "default_locale": "en"
avm999636a7cbcb2019-03-27 01:16:28 +010083}