avm99963 | 847ee63 | 2019-03-27 00:57:44 +0100 | [diff] [blame] | 1 | { |
| 2 | "manifest_version": 2, |
avm99963 | c2e7db3 | 2019-03-27 23:49:05 +0100 | [diff] [blame] | 3 | "name": "Infinite Scroll in TW", |
avm99963 | 249955f | 2019-03-28 01:28:33 +0100 | [diff] [blame] | 4 | "version": "0.1.1", |
avm99963 | c2e7db3 | 2019-03-27 23:49:05 +0100 | [diff] [blame] | 5 | "description": "Get infinite Scroll in the Google Forums and the Community Console", |
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 | { |
| 16 | "matches": ["https://support.google.com/*/threads*"], |
avm99963 | c2e7db3 | 2019-03-27 23:49:05 +0100 | [diff] [blame] | 17 | "js": ["forum_inject.js"] |
avm99963 | cbea314 | 2019-03-28 00:48:15 +0100 | [diff] [blame] | 18 | }, |
| 19 | { |
| 20 | "matches": ["https://support.google.com/*/thread/*"], |
| 21 | "js": ["thread_inject.js"] |
avm99963 | 847ee63 | 2019-03-27 00:57:44 +0100 | [diff] [blame] | 22 | } |
| 23 | ], |
| 24 | "permissions": [ |
| 25 | "https://support.google.com/s/community*", |
avm99963 | cbea314 | 2019-03-28 00:48:15 +0100 | [diff] [blame] | 26 | "https://support.google.com/*/threads*", |
| 27 | "https://support.google.com/*/thread/*", |
| 28 | "storage" |
| 29 | ], |
| 30 | "options_page": "options.html", |
| 31 | "options_ui": { |
| 32 | "page": "options.html", |
| 33 | "chrome_style": true, |
| 34 | "open_in_tab": false |
| 35 | }, |
| 36 | "background": { |
| 37 | "scripts": ["background.js"], |
| 38 | "persistent": false |
| 39 | } |
avm99963 | 6a7cbcb | 2019-03-27 01:16:28 +0100 | [diff] [blame] | 40 | } |