This repository has been archived by the owner on Apr 7, 2022. It is now read-only.
forked from iann0036/wildfire
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
105 lines (105 loc) · 2.57 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "Wildfire",
"short_name": "Wildfire",
"version": "1.3.9",
"manifest_version": 2,
"author": "wildfire.ai",
"description": "Record browser actions then replay immediately. Craft your own custom automation workflows.",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"commands": {
"stop-simulation": {
"suggested_key": {
"default": "Ctrl+Shift+0"
},
"description": "Stop Simulation",
"global": true
},
"play-workflow-1": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "MacCtrl+Shift+1"
},
"description": "Play Favorited Workflow #1"
},
"play-workflow-2": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "MacCtrl+Shift+2"
},
"description": "Play Favorited Workflow #2"
},
"play-workflow-3": {
"description": "Play Favorited Workflow #3"
},
"run-current-workflow": {
"suggested_key": {
"default": "Ctrl+Shift+9",
"mac": "MacCtrl+Shift+9"
},
"description": "Play Current Workflow"
}
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"background": {
"scripts": ["tesseract/tesseract.js", "jquery-2.2.4.min.js", "main.js", "aes.js", "exprparse.js", "fuzzyset/fuzzyset.js"]
},
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"match_about_blank": true,
"js": ["jquery-2.2.4.min.js", "content.js"],
"all_frames": true
}
],
"browser_action": {
"browser_style": false,
"default_icon": {
"16": "icon-16.png",
"32": "icon-32.png"
},
"default_popup": "popup.html"
},
"permissions": [
"alarms",
"clipboardRead",
"clipboardWrite",
"bookmarks",
"contextMenus",
"contentSettings",
"downloads",
"history",
"nativeMessaging",
"browsingData",
"proxy",
"webRequest",
"webRequestBlocking",
"cookies",
"tabs",
"webNavigation",
"storage",
"tabCapture",
"notifications",
"http://*/",
"https://*/",
"<all_urls>",
"unlimitedStorage",
"debugger"
],
"web_accessible_resources": ["embedded.js"],
"externally_connectable": {
"matches": ["https://wildfire.ai/*","https://www.wildfire.ai/*","https://api.wildfire.ai/*","https://cloud.wildfire.ai/*"]
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "48.0"
}
},
"minimum_opera_version": "33.0",
"offline_enabled": true
}