-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (37 loc) · 951 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
31
32
33
34
35
36
37
38
{
"manifest_version": 2,
"content_scripts": [ {
"include_globs": [ "*www.reddit.com/r/thebutton/*" ],
"js": [
"jquery.js",
"button.js"
],
"matches": [ "http://www.reddit.com/r/thebutton/*","https://www.reddit.com/r/thebutton/*"
],
"run_at": "document_end"
} ],
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": {
"19": "images/icon19.png",
"38": "images/icon38.png"
},
"default_title": "Teh Button"
},
"icons":{
"16":"images/icon16.png"
},
"converted_from_user_script": true,
"description": "Reddit button highlighter and monitor",
"name": "Teh Button",
"version": "0.92",
"permissions": [
"<all_urls>",
"storage",
"tabs",
"contextMenus",
"clipboardWrite"
]
}