This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
90 lines (90 loc) · 2.39 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"manifest_version": 2,
"name": "法規亦毒氣",
"description": "將網頁中的法規與條號都轉變成連結,讓您快速查閱指定條文。",
"version": "0.4.3",
"permissions": [
"http://law.moj.gov.tw/"
],
"icons" : {"128": "icon.png"},
"options_page": "options.html",
"browser_action": {
"default_icon": "icon.png",
"default_title": "法規亦毒氣",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"exclude_matches": [
"http://law.moj.gov.tw/Eng/*",
"http://law.moj.gov.tw/LawClass/ExContent_print.aspx*",
"http://jirs.judicial.gov.tw/FJUD/PrintFJUD03_0.aspx*",
"*://drive.google.com/keep*",
"*://docs.google.com/*"
],
"css": ["main.css"],
"js": [
"parseInt.js",
"pcodes.js",
"aliases.js",
"lyIDs.js",
"courts.js",
"LER.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": ["http://www.judicial.gov.tw/constitutionalcourt/p03_01.asp*"],
"css": ["constitutionalcourt.css"],
"js": ["constitutionalcourt.js"],
"run_at": "document_end",
"all_frames": true
},
{
"matches": ["http://jirs.judicial.gov.tw/*"],
"css": ["jirs.css"],
"js": ["jirs.js"]
},
{
"matches": ["http://lis.ly.gov.tw/*"],
"css": ["ly.css"],
"js": ["ly.js"],
"all_frames": true
},
{
"matches": ["http://lci.ly.gov.tw/*"],
"js": ["ly.lci.js"]
},
{
"matches": ["http://law.moj.gov.tw/*"],
"exclude_matches": ["http://law.moj.gov.tw/Eng/*"],
"css": ["moj.css"],
"js": [
"moj.js",
"pre32.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"http://db.lawbank.com.tw/FLAW/FLAW*",
"http://db.lawbank.com.tw/FLAW/PrintFLAW*"
],
"css": ["lawbank.css"],
"js": [
"lawbank.js",
"pre32.js"
],
"run_at": "document_end"
},
{
"matches": ["<all_urls>"],
"js": ["auto.js"],
"run_at": "document_idle",
"all_frames": true
}
]
}