forked from Hogan-TR/WebNote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 1.14 KB
/
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
{
"name": "WebNote",
"author": {
"email": "[email protected]"
},
"version": "0.0.3",
"description": "Take notes directly in the page.",
"manifest_version": 2,
"default_locale": "en",
"permissions": ["storage", "tabs"],
"web_accessible_resources": ["js/inject.js"],
"background": {
"scripts": ["js/background.js"]
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "WebNote",
"default_icon": {
"128": "images/128.png",
"16": "images/16.png",
"19": "images/19.png",
"32": "images/32.png",
"38": "images/38.png",
"48": "images/48.png"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/utils.js", "js/content-script.js"],
"css": ["css/custom.css"],
"run_at": "document_start"
}
],
"icons": {
"128": "images/128.png",
"16": "images/16.png",
"19": "images/19.png",
"32": "images/32.png",
"38": "images/38.png",
"48": "images/48.png"
}
}