forked from actigence/json-to-table-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (35 loc) · 942 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
{
"manifest_version": 3,
"name": "ShipIt Viewer",
"version": "1.0",
"description": "*** View ShipIt JSON response as HTML table ***",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"content_scripts": [
{
"css": [
"libs/datatables.css",
"style.css"
],
"js" : [
"libs/jQuery-3.3.1/jquery-3.3.1.js",
"libs/datatables.js",
"src/content.js",
"main.js"
],
"matches": [
"http://shipit.tools.expedia.com/api/service/*"
]
}
],
"web_accessible_resources": [{
"resources": ["libs/DataTables-1.10.21/images/*"],
"matches": ["<all_urls>"]
}, {
"resources": ["images/*"],
"matches": ["<all_urls>"]
}]
}