forked from GenderMagProject/GenderMagRecordersAssistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
62 lines (62 loc) · 1.57 KB
/
manifest.json
File metadata and controls
62 lines (62 loc) · 1.57 KB
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
{
"name": "GenderMag Recorder's Assistant",
"manifest_version": 3,
"description": "Walks you through GenderMag evaluations of the software or website you're creating, step-by-step, and produces a report at the end.",
"version": "1.0.0",
"icons": {
"16": "icon.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"service_worker": "scripts/background.js"
},
"action": {
"default_icon": "icon.png",
"default_title": "GenderMag Tool"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"jquery-ui-1.12.1/external/jquery/jquery.js",
"/scripts/jcanvas.min.js",
"jquery-ui-1.12.1/jquery-ui.min.js",
"scripts/tooltip.js",
"/scripts/utilities.js",
"scripts/overlayScreen.js",
"/scripts/setup.js",
"/scripts/prewalkthrough.js",
"scripts/script.js",
"/scripts/persona.js",
"/scripts/walkthrough.js",
"/scripts/screenshot.js",
"/scripts/saveState.js",
"/scripts/action.js",
"/scripts/status.js",
"/scripts/output.js",
"/Stuk-jszip-4cbaf0e/dist/jszip.js",
"/Stuk-jszip-4cbaf0e/vendor/FileSaver.js"
],
"css": ["jquery-ui-1.12.1/jquery-ui.css"],
"run_at": "document_start"
}
],
"permissions": ["unlimitedStorage", "activeTab", "scripting"],
"host_permissions": ["<all_urls>"],
"web_accessible_resources": [
{
"resources": [
"/templates/*",
"/images/*.jpg",
"/images/*.png",
"/styles/*.css",
"styles/styles.css",
"/jquery-ui-1.12.1/jquery-ui.css",
"/font-awesome-4.6.1/*",
"/Stuk-jszip-4cbaf0e/*"
],
"matches": ["<all_urls>"]
}
]
}