blob: 0553d604b115ca017f682449f0b5c8419ab91c8c [file] [log] [blame]
avm99963847ee632019-03-27 00:57:44 +01001{
2 "manifest_version": 2,
avm99963a3d1ef32019-03-30 23:33:29 +01003 "name": "__MSG_appName__",
avm9996381e410c2019-03-31 17:49:46 +02004 "version": "0.2.2",
avm99963a3d1ef32019-03-30 23:33:29 +01005 "description": "__MSG_appDescription__",
avm99963847ee632019-03-27 00:57:44 +01006 "icons": {
avm99963d8498752019-03-27 01:09:56 +01007 "512": "icons/512.png",
8 "128": "icons/128.png"
avm99963847ee632019-03-27 00:57:44 +01009 },
10 "content_scripts": [
11 {
12 "matches": ["https://support.google.com/s/community*"],
13 "js": ["console_inject.js"]
14 },
15 {
16 "matches": ["https://support.google.com/*/threads*"],
avm99963c2e7db32019-03-27 23:49:05 +010017 "js": ["forum_inject.js"]
avm99963cbea3142019-03-28 00:48:15 +010018 },
19 {
20 "matches": ["https://support.google.com/*/thread/*"],
avm99963134f1ef2019-03-30 19:05:27 +010021 "js": ["thread_inject.js"],
22 "run_at": "document_end"
avm99963d0757252019-03-30 20:13:00 +010023 },
24 {
25 "matches": ["https://support.google.com/*/profile/*"],
26 "js": ["profile_inject.js"]
avm99963847ee632019-03-27 00:57:44 +010027 }
28 ],
29 "permissions": [
30 "https://support.google.com/s/community*",
avm99963cbea3142019-03-28 00:48:15 +010031 "https://support.google.com/*/threads*",
32 "https://support.google.com/*/thread/*",
33 "storage"
34 ],
35 "options_page": "options.html",
36 "options_ui": {
37 "page": "options.html",
38 "chrome_style": true,
39 "open_in_tab": false
40 },
41 "background": {
42 "scripts": ["background.js"],
43 "persistent": false
avm99963a3d1ef32019-03-30 23:33:29 +010044 },
45 "default_locale": "en"
avm999636a7cbcb2019-03-27 01:16:28 +010046}