-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 914 Bytes
/
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
{
"manifest_version": 2,
"content_security_policy": "script-src 'self' ; object-src 'self' ",
"name": "MTRBuyTicket",
"version": "1.0",
"description": "I want to go home.",
"icons": {
"32": "logo_32.png",
"48": "logo_48.png",
"128": "logo_128.png"
},
"browser_action": {
"default_title": "MTRBuyTicket",
"default_icon": "logo_128.png"
},
"background": {
"scripts": [ "background.js", "jquery.js" ],
"persistent": true
},
"content_scripts": [
{
"matches": [ "https://www.ticketing.highspeed.mtr.com.hk/its/*" ],
"js": [ "jquery.js", "content.js" ]
}
],
"permissions": [
"cookies",
"tabs",
"clipboardRead",
"clipboardWrite",
"storage",
"browsingData",
"*://*.ticketing.highspeed.mtr.com.hk/*",
"*://*.ruokuai.com/*",
"*://api.accessyou.com/*",
"*://localhost/*",
"*://sms.yunpian.com/*"
]
}