avm99963 | 847ee63 | 2019-03-27 00:57:44 +0100 | [diff] [blame] | 1 | { |
| 2 | "manifest_version": 2, |
avm99963 | a3d1ef3 | 2019-03-30 23:33:29 +0100 | [diff] [blame] | 3 | "name": "__MSG_appName__", |
avm99963 | 98f22dc | 2020-07-14 18:27:24 +0200 | [diff] [blame] | 4 | "version": "0.7.1", |
avm99963 | a3d1ef3 | 2019-03-30 23:33:29 +0100 | [diff] [blame] | 5 | "description": "__MSG_appDescription__", |
avm99963 | 847ee63 | 2019-03-27 00:57:44 +0100 | [diff] [blame] | 6 | "icons": { |
avm99963 | d849875 | 2019-03-27 01:09:56 +0100 | [diff] [blame] | 7 | "512": "icons/512.png", |
| 8 | "128": "icons/128.png" |
avm99963 | 847ee63 | 2019-03-27 00:57:44 +0100 | [diff] [blame] | 9 | }, |
| 10 | "content_scripts": [ |
| 11 | { |
| 12 | "matches": ["https://support.google.com/s/community*"], |
| 13 | "js": ["console_inject.js"] |
| 14 | }, |
| 15 | { |
avm99963 | 6d9c5fe | 2019-06-04 00:35:53 +0200 | [diff] [blame] | 16 | "matches": ["https://support.google.com/s/community*"], |
| 17 | "js": ["console_inject_start.js"], |
| 18 | "run_at": "document_start" |
| 19 | }, |
| 20 | { |
avm99963 | 847ee63 | 2019-03-27 00:57:44 +0100 | [diff] [blame] | 21 | "matches": ["https://support.google.com/*/threads*"], |
avm99963 | c2e7db3 | 2019-03-27 23:49:05 +0100 | [diff] [blame] | 22 | "js": ["forum_inject.js"] |
avm99963 | cbea314 | 2019-03-28 00:48:15 +0100 | [diff] [blame] | 23 | }, |
| 24 | { |
| 25 | "matches": ["https://support.google.com/*/thread/*"], |
avm99963 | 134f1ef | 2019-03-30 19:05:27 +0100 | [diff] [blame] | 26 | "js": ["thread_inject.js"], |
| 27 | "run_at": "document_end" |
avm99963 | d075725 | 2019-03-30 20:13:00 +0100 | [diff] [blame] | 28 | }, |
| 29 | { |
| 30 | "matches": ["https://support.google.com/*/profile/*"], |
| 31 | "js": ["profile_inject.js"] |
avm99963 | 847ee63 | 2019-03-27 00:57:44 +0100 | [diff] [blame] | 32 | } |
| 33 | ], |
| 34 | "permissions": [ |
| 35 | "https://support.google.com/s/community*", |
avm99963 | cbea314 | 2019-03-28 00:48:15 +0100 | [diff] [blame] | 36 | "https://support.google.com/*/threads*", |
| 37 | "https://support.google.com/*/thread/*", |
| 38 | "storage" |
| 39 | ], |
| 40 | "options_page": "options.html", |
| 41 | "options_ui": { |
| 42 | "page": "options.html", |
| 43 | "chrome_style": true, |
| 44 | "open_in_tab": false |
| 45 | }, |
| 46 | "background": { |
| 47 | "scripts": ["background.js"], |
| 48 | "persistent": false |
avm99963 | a3d1ef3 | 2019-03-30 23:33:29 +0100 | [diff] [blame] | 49 | }, |
| 50 | "default_locale": "en" |
avm99963 | 6a7cbcb | 2019-03-27 01:16:28 +0100 | [diff] [blame] | 51 | } |