-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
47 lines (41 loc) · 979 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
{
"manifest_version": 2,
"name": "Light Marker",
"version": "2.1",
"description": "An intellgent bookmark extension.",
"browser_action": {
"default_title": "Light Marker",
"default_popup": "src/html/popup.html",
"default_icon": {
"16": "images/icons16/png/001-shapes.png",
"24": "images/icons24/png/001-shapes.png",
"32": "images/icons32/png/001-shapes.png"
}
},
"background": {
"scripts": ["/src/js/jquery-3.2.1.slim.min.js", "/src/js/background.js"]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["/src/js/jquery-3.2.1.slim.min.js", "/src/js/content-script.js"],
"run_at": "document_idle"
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"mac": "Command+D",
"windows": "Ctrl+D",
"linux": "Ctrl+D"
}
}
},
"permissions": [
"tabs",
"http://*/",
"https://*/",
"storage",
"bookmarks"
]
}