forked from yize/xswitch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (36 loc) · 849 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
{
"name": "XSwitch",
"description": "A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.",
"short_name": "xs",
"version": "1.17.1",
"manifest_version": 2,
"browser_action": {
"default_icon": "images/grey_128.png",
"default_title": "XSwitch",
"default_popup": "XSwitch.html"
},
"permissions": [
"webRequest",
"storage",
"webRequestBlocking",
"browsingData",
"<all_urls>"
],
"icons": {
"48": "images/grey_128.png",
"128": "images/grey_128.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+X",
"mac": "Command+Shift+X",
"default": "Ctrl+Shift+X"
}
}
},
"options_page": "options.html",
"background": {
"scripts": ["background.min.js"]
}
}