forked from cdevroe/unmark-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (42 loc) · 991 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
41
42
43
44
45
46
47
48
49
{
"manifest_version": 2,
"name": "Unmark",
"description": "Unmark's Chrome extension for saving your marks.",
"version": "1.0.1",
"homepage_url": "https://bookmark.thekkedam.org/",
"icons": {
"16": "images/icon-16.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"permissions": [
"tabs",
"contextMenus",
"*://unmark.it/"
],
"omnibox": { "keyword" : "unmark" },
"background": {
"scripts": [
"js/third_party/jquery.js",
"js/unmark/base.js",
"js/unmark/omnibox.js",
"js/unmark/contexts.js"
]
},
"browser_action": {
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
},
"default_title": "Save to Unmark",
"default_popup": "unmark.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/unmark/content.js"],
"all_frames": true,
"run_at": "document_end"
}
]
}