forked from voluongtho/CORS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
64 lines (63 loc) · 1.89 KB
/
Copy pathmanifest.json
File metadata and controls
64 lines (63 loc) · 1.89 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
63
64
{
"name": "🛠️ ToolCK",
"author": "Anh Phê",
"description": "Hỗ trợ theo dõi thị trường chứng khoán và tài chính\nCài extension để khắc phục lỗi CORS của nguồn dữ liệu.",
"version": "0.0.45",
"manifest_version": 3,
"icons": {
"16": "icons/f16.png",
"48": "icons/f48.png",
"128": "icons/f128.png"
},
"host_permissions": [
"<all_urls>"
],
"permissions": [
"declarativeNetRequest",
"activeTab", "storage",
"contextMenus", "scripting"
],
"declarative_net_request": {
"rule_resources": [{
"id": "getAPI",
"enabled": true,
"path": "rules.json"
}]
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Đến trang công cụ tài chính"
},
"content_scripts": [{
"all_frames": true,
"matches": ["<all_urls>"],
"js": ["morecss/content.js", "shortcut/content.js", "drawtool/libs/jquery-3.2.1.min.js", "allow.js"],
"run_at": "document_end"
}, {
"matches": ["*://*.wichart.vn/*"],
"js": ["revealdata.js"],
"run_at": "document_end"
}, {
"matches": ["*://*.fireant.vn/*"],
"js": ["fireant.js"],
"run_at": "document_end"
}, {
"matches": ["*://*.vieon.vn/*"],
"js": ["vieon_helper/content.js"],
"css": ["vieon_helper/styles.css"],
"run_at": "document_end"
}, {
"matches": ["*://*.drive.google.com/*"],
"js": ["drive/pdf.js", "drive/jspdf.debug.js"],
"run_at": "document_end"
}],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [{
"resources": ["icons/*.png", "vieon_helper/styles.css"],
"matches": ["<all_urls>"]
}]
}