forked from ritwickdey/live-server-web-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 1.44 KB
/
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
44
45
46
47
48
49
50
51
52
{
"manifest_version": 2,
"name": "Live Server Web Extension",
"version": "1.3.0",
"description": " Makes your existing server live. This is a browser extension that helps you to live reload feature for dynamic pages",
"icons": {
"96": "./img/icon.png",
"128": "./img/icon128.png"
},
"author": "Ritwick Dey",
"short_name": "Live Server Web Extension",
"homepage_url": "https://github.com/ritwickdey/live-server-web-extension",
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"include_globs": [
"*://localhost/*",
"*://*.local/*",
"*://10.*.*.*/*",
"*://172.16.*.*/*",
"*://172.17.*.*/*",
"*://172.18.*.*/*",
"*://172.19.*.*/*",
"*://172.2?.*.*/*",
"*://172.30.*.*/*",
"*://172.31.*.*/*",
"*://192.168.*.*/*"
],
"js": [
"reload.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_popup": "./popup/popup.html",
"default_icon": "./img/icon.png",
"default_title": "Live Server"
},
"permissions": [
"tabs",
"http://*/*",
"https://*/*"
]
}