blob: 10c43153013b67757bc92f8733e518a38e0b111b [file] [log] [blame]
avm99963847ee632019-03-27 00:57:44 +01001{
2 "manifest_version": 2,
avm99963c2e7db32019-03-27 23:49:05 +01003 "name": "Infinite Scroll in TW",
avm99963249955f2019-03-28 01:28:33 +01004 "version": "0.1.1",
avm99963c2e7db32019-03-27 23:49:05 +01005 "description": "Get infinite Scroll in the Google Forums and the Community Console",
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/*"],
21 "js": ["thread_inject.js"]
avm99963847ee632019-03-27 00:57:44 +010022 }
23 ],
24 "permissions": [
25 "https://support.google.com/s/community*",
avm99963cbea3142019-03-28 00:48:15 +010026 "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 }
avm999636a7cbcb2019-03-27 01:16:28 +010040}