-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
36 lines (34 loc) · 1.17 KB
/
manifest.json
File metadata and controls
36 lines (34 loc) · 1.17 KB
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
{
"manifest_version": 2,
"name": "LAPI Chrome Extension V2",
"description": "This extension is the UI for LiveAPI",
"version": "1.0",
"browser_action": {
// "default_icon": "icon.png",
// "default_popup": "lapi.html",
"default_title": "LiveAPI Endpoint Creation Tool"
},
"web_accessible_resources": ["src/assets/*", "*.png", "*.eot", "*.woff", "*.woff2", "*.ttf", "*.svg", "bundles/*"],
"background": {
"scripts": ["bundles/background.bundle.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["http://*/*","https://*/*", "<all_urls>"],
"css": ["semantic.css", "style.css"],
// "js": ["configure-webpack.js", "jquery.js", "bundles/contentscripts.bundle.js", "./node_modules/semantic-ui-css/semantic.css", "src/main.js"]
"js": ["bundles/semantic.bundle.js", "jquery.js"]
}
],
"permissions": [
"tabs",
"activeTab",
"file:///*",
"http://*/*",
"https://*/*",
"<all_urls>"
],
"content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src * 'unsafe-inline' 'self' blob:; img-src 'self'; font-src 'self' *"
// "background_page": "background.html"
}