-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest_dev.json
49 lines (42 loc) · 910 Bytes
/
manifest_dev.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": "ScribbleDev",
"description": "Annotate the internet.",
"version": "1.0.1",
"background": {
"scripts": ["scripts/background.js"],
"persistent": false
},
"browser_action" : {
"default_icon": "images/s48.png",
"default_popup": "html/popup.html",
"default_title": "Scribble"
},
"icons": {
"16": "images/s16.png",
"48": "images/s48.png",
"128": "images/s128.png"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["scripts/scribble.js"],
"css": ["styles/scribble.css"]
}
],
"sandbox" : {
"pages" : [
"http://scribble.dev:3000/*",
"http://scribble.ly/*",
"https://scribble.ly/*"
]
},
"web_accessible_resources": [
"fonts/*.woff2",
"fonts/*.woff",
"fonts/*.ttf",
"fonts/*.svg",
"fonts/*.eot",
"images/*.svg"
]
}