-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
53 lines (53 loc) · 1.44 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
{
"manifest_version": 2,
"name": "RECAP for Chrome",
"description": "A free extension for Chrome that improves the experience of using PACER, the electronic public access system for the U. S. Federal District and Bankruptcy Courts. When you have RECAP installed, it contributes documents to a public archive hosted by the Internet Archive and shows you when free documents are available from the archive.",
"version": "0.1",
"permissions": [
"http://*.recapextension.org/",
"http://recapextension.org/",
"*://*.uscourts.gov/",
"notifications",
"storage",
"tabs"
],
"background": {
"scripts": [
"utils.js",
"notifier.js",
"toolbar_button.js",
"pacer.js",
"recap.js",
"background.js"
]
},
"content_scripts": [{
"matches": ["*://*.uscourts.gov/*"],
"include_globs": ["*://ecf.*", "*://ecf-train.*", "*://pacer.*"],
"css": ["style.css"],
"js": [
"jquery.min.js",
"utils.js",
"notifier.js",
"toolbar_button.js",
"pacer.js",
"recap.js",
"content.js"
],
"run_at": "document_end"
}],
"browser_action": {
"default_icon": "grey-32.png",
"default_title": "RECAP: Not at a PACER site",
"default_popup": "options.html"
},
"options_page": "options.html",
"web_accessible_resources": [
"grey-16.png",
"grey-32.png",
"icon-16.png",
"icon-32.png",
"warning-16.png",
"warning-32.png"
]
}