forked from drakeapps/synccit-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
30 lines (28 loc) · 919 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"manifest_version": 2,
"content_scripts": [ {
"exclude_globs": [ ],
"include_globs": [ "*" ],
"js": [
"synccit.user.js"
],
"matches": [ "http://*.reddit.com/*",
"http://reddit.com/*",
"https://*.reddit.com/*",
"https://reddit.com/*"
],
"run_at": "document_end"
} ],
"converted_from_user_script": true,
"icons": {
"16" : "icon16.png",
"48" : "icon48.png",
"128" : "icon128.png"
},
"description": "synccit syncs reddit.com visited links and viewed comments syncing across browsers and devices",
"name": "synccit for reddit",
"version": "7",
"short_name": "synccit",
"permissions": [ "<all_urls>"
]
}