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