-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (28 loc) · 768 Bytes
/
manifest.json
File metadata and controls
31 lines (28 loc) · 768 Bytes
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
{
"manifest_version": 2,
"name": "OpenAPI Preview",
"version": "0.1",
"description": "Preview OpenAPI files in Pull Requests and single file visualisation",
"author": "Rafael Ferreira",
"content_scripts": [
{
"matches": ["https://github.com/*pull*"],
"js": ["base.js", "pull_request_view.js"]
},
{
"matches": [
"https://github.com/*swagger.yaml",
"https://github.com/*swagger.yml",
"https://github.com/*openapi.yaml",
"https://github.com/*openapi.yml"
],
"js": ["base.js", "single_file_view.js"]
}
],
"background": {
"scripts": ["background.js", "spec_load.js"],
"persistence": false
},
"web_accessible_resources": ["redoc.html"],
"permissions": ["tabs"]
}