-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
36 lines (36 loc) · 857 Bytes
/
manifest.json
File metadata and controls
36 lines (36 loc) · 857 Bytes
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
{
"name": "table2json",
"version": "1.0",
"description": "Build an Extension!",
"permissions": ["activeTab", "declarativeContent", "storage"],
"page_action" : {
"default_title" : "table2json",
"default_popup" : "popup.html",
"default_icon" : {
"48" : "./images/logo32.png"
}
},
"content_scripts": [
{
"matches": [
"https://showdoc.ylzpay.com/*",
"http://localhost:5500/*",
"https://yapi.ylzpay.com/*",
"https://element.eleme.cn/*",
"http://192.168.11.242:4999/*"
],
"css": ["table2json.css"],
"js": ["table2json.js"]
}
],
"icons": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo64.png",
"128": "images/logo128.png"
},
"manifest_version": 2,
"background" : {
"scripts" : ["background.js"]
}
}