-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (43 loc) · 887 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
{
"manifest_version": 2,
"name": "line-2-skeleton",
"version": "0.1",
"description": "convert line on canvas to skeleton html",
"author": "bibidu",
"browser_action": {
"default_icon": "images/logo.png",
"default_popup": "popup.html",
"default_title": "extract html"
},
"icons": {
"128": "images/logo.png"
},
"background": {
"scripts": ["dist/background.js"],
"persistent": true
},
"permissions": [
"activeTab",
"declarativeContent",
"storage",
"contextMenus",
"webRequest",
"webRequestBlocking",
"tabs",
"contextMenus",
"http://*/*",
"https://*/*"
],
"web_accessible_resources": ["js/inject.js"],
"content_scripts": [{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"/dist/contentScript.js"
],
"css": ["popup.css"],
"run_at": "document_start"
}]
}