-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
40 lines (40 loc) · 964 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
39
40
{
"name": "felicious",
"version": "0.2.3",
"description": "Browse your f***ing delicious bookmarks",
"background_page": "background.html",
"options_page": "options.html",
"browser_action": {
"default_icon": "images/icon_19.png",
"popup": "popup.html"
},
"icons": {
"16": "images/icon_16.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png",
"64": "images/icon_64.png"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/utils.js", "js/shortcuts.js"],
"run_at": "document_start"
},
{
"matches": ["http://delicious.com/save*", "https://delicious.com/save*"],
"js": ["js/close.js"],
"run_at": "document_start"
},
{
"matches": ["https://api.login.yahoo.com/oauth/v2/request_auth"],
"js": ["js/verify.js"],
"run_at": "document_start"
}
],
"permissions": [
"http://api.del.icio.us/*",
"https://api.del.icio.us/*",
"https://api.login.yahoo.com/*",
"tabs"
]
}