-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
49 lines (48 loc) · 1.21 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
{
"name": "VFG Parser",
"version": "0.0.1",
"manifest_version": 2,
"description": "VFG Parser.",
"homepage_url": "https://fb.com/kosiakMD",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"browser_action": {
"default_title": "VFG Parser",
"default_popup": "popup.html"
},
"default_locale": "en",
"background": {
"scripts": [
"js/common.js", "js/background.js"
],
"persistent": true
},
"permissions": [
"storage",
"https://row1.vfsglobal.com/GlobalAppointment/Home/SelectVAC",
"https://api.telegram.org/*"
],
"content_security_policy": "script-src 'self' https://api.telegram.org/*; object-src 'self'",
"content_scripts": [
{
"matches": [
"https://row1.vfsglobal.com/GlobalAppointment/Home/SelectVAC"
],
"run_at": "document_idle",
"js": [
"js/common.js", "js/jquery.js", "js/content.js"
]
},
{
"matches": [
"https://row1.vfsglobal.com/GlobalAppointment/Home/*"
],
"js": [
"js/jquery.js", "js/test.js"
]
}
]
}