blob: 723370b98964ebe4b5a13b311bc375ab4dfe4a00 [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/*"],
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
44 }
avm999636a7cbcb2019-03-27 01:16:28 +010045}