-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
58 lines (58 loc) · 1.55 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
53
54
55
56
57
58
{
"manifest_version": 3,
"name": "Swagger UI Authorizer",
"description": "Browser extension that performs automatic authorization of requests before executing them on Swagger UI pages",
"version": "1.1.0",
"keywords": [
"swagger",
"ui",
"authorizer",
"chrome",
"extension",
"microsoft edge",
"api",
"authorization",
"openapi",
"security",
"development",
"testing"
],
"icons": {
"16": "/assets/images/icons/icon16.png",
"48": "/assets/images/icons/icon48.png",
"128": "/assets/images/icons/icon128.png"
},
"content_scripts": [
{
"world": "MAIN",
"css": [
"content/style.css"
],
"js": [
"core.js",
"content/store.js",
"content/content.js",
"content/components/authModal/authModal.js",
"content/components/authModal/authBlock/authBlock.js",
"content/components/authModal/authBlock/authBlockProfile/authBlockProfile.js",
"content/components/authModal/authBlock/authBlockProfile/authBlockProfileRequestType.js",
"content/components/authModal/authBlock/authBlockProfile/authBlockProfileValueType.js",
"content/components/authModal/authBlock/authBlockProfile/authBlockProfileCredentialsType.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"/content/**/*.css"
],
"matches": [
"<all_urls>"
]
}
]
}