This repository has been archived by the owner on Oct 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
manifest.json
72 lines (72 loc) · 1.64 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
{
"name": "AntiCaptchaFF",
"description": "Automatically solve and bypass reCaptcha",
"version": "0.0.1",
"manifest_version": 2,
"icons": {
"19": "resources/images/recaptcha-png.png",
"32": "resources/images/recaptcha-png.png",
"128": "resources/images/recaptcha-png.png"
},
"browser_action": {
"default_icon": {
"19": "resources/images/recaptcha-png.png",
"32": "resources/images/recaptcha-png.png",
"128": "resources/images/recaptcha-png.png"
},
"default_title": "Captcha Solve",
"default_popup": "html/popup.html"
},
"permissions": [
"identity",
"tabs",
"storage",
"notifications",
"<all_urls>",
"https://*/*",
"activeTab"
],
"background": {
"scripts": [
"scripts/vendor/jquery-3.2.1.min.js",
"scripts/background/background.js"
]
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"scripts/vendor/jquery-3.2.1.min.js",
"scripts/vendor/arrive.min.js",
"scripts/contentscript/config.js",
"scripts/contentscript/contentscript.js"
],
"css": [
"css/popup.css"
],
"run_at": "document_end",
"all_frames": false
}
],
"web_accessible_resources": [
"resources/images/*",
"html/*"
],
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
}
},
"commands": {
"toggle-feature": {
"suggested_key": {
"default": "Ctrl+Shift+9"
},
"global": true
}
}
}