blob: 49792d51c5611824bdcd7a02fdbd647b3c28af21 [file] [log] [blame]
avm99963e13bace2020-12-25 01:35:25 +01001{
2 "manifest_version": 2,
3 "name": "__MSG_appName__",
4 "version": "0",
5 "description": "__MSG_appDescription__",
6 "icons": {
7 "512": "icons/512.png",
8 "128": "icons/128.png"
9 },
10 "content_scripts": [
11 {
12 "matches": ["https://support.google.com/s/community*"],
13 "js": ["common/content_scripts.js", "content_scripts/console_inject.js"]
14 },
15 {
16 "matches": ["https://support.google.com/s/community*"],
17 "js": ["common/content_scripts.js", "content_scripts/console_inject_start.js"],
18 "css": ["common/console.css"],
19 "run_at": "document_start"
20 },
21 {
22 "matches": ["https://support.google.com/*/threads*"],
23 "js": ["content_scripts/forum_inject.js"]
24 },
25 {
26 "matches": ["https://support.google.com/*/thread/*"],
27 "exclude_matches": ["https://support.google.com/s/community*", "https://support.google.com/*/thread/new*"],
28 "js": ["common/content_scripts.js", "content_scripts/thread_inject.js"],
29 "run_at": "document_end"
30 },
31 {
32 "matches": ["https://support.google.com/s/community*", "https://support.google.com/*/thread/*"],
33 "exclude_matches": ["https://support.google.com/*/thread/new*"],
34 "js": ["common/content_scripts.js", "common/cs_event_listener.js", "content_scripts/profileindicator_inject.js"]
35 },
36 {
37 "matches": ["https://support.google.com/*/profile/*"],
38 "js": ["common/content_scripts.js", "content_scripts/profile_inject.js"],
39 "css": ["common/forum.css"]
40 }
41 ],
42 "permissions": [
43 "https://support.google.com/s/community*",
44 "https://support.google.com/*/threads*",
45 "https://support.google.com/*/thread/*",
46 "storage"
47 ],
48 "web_accessible_resources": [
49 "injections/profileindicator_inject.js",
50 "injections/profileindicator_inject.css",
51 "injections/ccdarktheme.css",
52 "injections/batchlock_inject.js"
53 ],
54 "browser_action": {},
55 "options_ui": {
56 "page": "options.html",
57 "browser_style": true,
58 "open_in_tab": false
59 },
60 "background": {
61 "scripts": [
62 "common/common.js",
63 "background.js"
64 ]
65 },
66 "browser_specific_settings": {
67 "gecko": {
68 "id": "twpowertools@avm99963.com",
69 "strict_min_version": "57.0"
70 }
71 },
72 "default_locale": "en"
73}