-
Notifications
You must be signed in to change notification settings - Fork 29
/
manifest.json
45 lines (45 loc) · 1.14 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
{
"manifest_version": 2,
"version": "1.0.2",
"minimum_chrome_version": "39",
"default_locale": "en",
"name": "__MSG_appName__",
"short_name":"JWTInspector",
"description": "__MSG_appDesc__",
"icons": {
"16": "assets/images/icon-16.png",
"48": "assets/images/icon-48.png",
"128": "assets/images/icon-128.png"
},
"background": {
"page": "build/html/Background.html"
},
"browser_action": {
"default_icon": "assets/images/icon-128.png",
"default_popup": "build/html/Popup.html"
},
"devtools_page": "build/html/DevTools.html",
"content_scripts": [{
"all_frames": true,
"run_at": "document_start",
"matches": ["*://*/*"],
"js": ["assets/js/content-script.js"]
}],
"web_accessible_resources":[
"/assets/js/console-jwt.js"
],
"permissions": [
"<all_urls>",
"activeTab",
"clipboardRead",
"contextMenus",
"cookies",
"http://*/*",
"https://*/*",
"storage",
"tabs",
"unlimitedStorage",
"webNavigation",
"webRequest"
]
}