-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (38 loc) · 1.2 KB
/
Copy pathmanifest.json
File metadata and controls
38 lines (38 loc) · 1.2 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
{
"action": {
"default_icon": {
"128": "assets/images/icon_128.png",
"32": "assets/images/icon_32.png"
},
"default_popup": "popup/popup.html",
"default_title": "Solve ReCaptchas"
},
"background": {
"service_worker": "service_worker.js"
},
"content_scripts": [ {
"all_frames": true,
"css": [ "content/style.css" ],
"js": [ "vendor/jquery/3.5.1/jquery.min.js", "common/config.js", "content/core_helpers.js", "content/script.js", "content/captcha/recaptcha/processor.js" ],
"matches": [ "\u003Call_urls>" ],
"run_at": "document_start"
} ],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"default_locale": "en",
"description": "__MSG_extention_description__",
"icons": {
"128": "assets/images/icon_128.png",
"32": "assets/images/icon_32.png"
},
"manifest_version": 3,
"name": "__MSG_extension_name__",
"permissions": [ "storage" ],
"short_name": "__MSG_extension_short_name__",
"version": "1.0.15",
"web_accessible_resources": [ {
"matches": [ "\u003Call_urls>" ],
"resources": [ "assets/images/*", "content/*" ]
} ]
}