This repository has been archived by the owner on Nov 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
manifest.json
executable file
·74 lines (74 loc) · 1.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "Gherkin Scenario Builder",
"version": "1.1.2",
"manifest_version": 2,
"description": "Generate Gherkin given/when/then scenarios interactively.",
"homepage_url": "https://github.com/nextbigsoundinc/gherkin-scenario-builder",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"permissions": ["tabs", "activeTab", "webNavigation", "downloads", "storage"],
"background": {
"scripts": [
"vendor/lodash.min.js",
"src/default-pages.js",
"src/default-users.js",
"src/default-steps.js",
"src/background.js"
],
"persistent": false
},
"options_ui": {
"page": "src/options.html",
"open_in_tab": false
},
"browser_action": {
"default_icon": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"default_title": "Gherkin Scenario Builder"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"vendor/jquery.min.js",
"vendor/jquery-ui.min.js",
"vendor/lodash.min.js",
"vendor/boundary/boundary.js",
"vendor/iframeResizer.min.js",
"src/string-presets.js",
"src/steps.js",
"src/content.js"
],
"css": [
"vendor/jquery-ui.min.css",
"vendor/boundary/boundary.css",
"src/boxes.css"
],
"all_frames": false
}
],
"web_accessible_resources": [
"vendor/jquery.min.js",
"vendor/iframeResizer.contentWindow.min.js",
"vendor/boundary/boundary-extra.css",
"vendor/fonts.css",
"vendor/icons.css",
"fonts/Roboto-Regular.ttf",
"fonts/Roboto-Bold.ttf",
"fonts/icomoon.eot",
"fonts/icomoon.ttf",
"fonts/icomoon.woff",
"fonts/icomoon.svg",
"src/content.css"
]
}