forked from rootsdev/roots-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
125 lines (125 loc) · 3.09 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"manifest_version": 2,
"description": "Search across multiple genealogy sites for matching records.",
"name": "RootsSearch",
"version": "3.1.1",
"permissions": [ "tabs", "https://rs-errors.herokuapp.com/" ],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"icons": {
"16": "images/icon-16.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"background": {
"page": "background/background.html"
},
"page_action": {
"default_icon": "images/icon-16.png",
"default_popup": "popup/popup.html",
"default_title": "Roots Search"
},
"content_scripts": [
{
"matches": [
"https://familysearch.org/tree/*",
"https://familysearch.org/pal:/MM9.1.1/*",
"http://www.werelate.org/wiki/Person:*",
"http://search.ancestry.com/cgi-bin/sse.dll*",
"http://search.ancestryinstitution.com/cgi-bin/sse.dll*",
"http://trees.ancestry.com/tree/*/person/*",
"http://trees.ancestryinstitution.com/tree/*/person/*",
"http://billiongraves.com/pages/record/*",
"http://www.findagrave.com/cgi-bin/fg.cgi*"
"*://www.genealogieonline.nl/*",
"*://www.openarch.nl/show*"
],
"run_at": "document_end",
"js": [
"includes/jquery.js",
"includes/utils.js"
]
},
{
"matches": [
"https://familysearch.org/pal:/MM9.1.1/*"
],
"run_at": "document_end",
"js": [
"widgets/fs-record-search.js"
]
},
{
"matches": [
"https://familysearch.org/tree/*"
],
"run_at": "document_end",
"js": [
"widgets/fs-familytree-ancestor-search.js"
]
},
{
"matches": [
"http://www.werelate.org/wiki/Person:*"
],
"run_at": "document_end",
"js": [
"widgets/werelate-person-search.js"
]
},
{
"matches": [
"http://search.ancestry.com/cgi-bin/sse.dll*",
"http://search.ancestryinstitution.com/cgi-bin/sse.dll*"
],
"run_at": "document_end",
"js": [
"widgets/ancestry-record-search.js"
]
},
{
"matches": [
"http://trees.ancestry.com/tree/*/person/*",
"http://trees.ancestryinstitution.com/tree/*/person/*"
],
"run_at": "document_end",
"js": [
"widgets/ancestry-person-profile.js"
]
},
{
"matches": [
"http://billiongraves.com/pages/record/*"
],
"run_at": "document_end",
"js": [
"widgets/billion-graves.js"
]
},{
"matches": [
"http://www.findagrave.com/cgi-bin/fg.cgi*"
],
"run_at": "document_end",
"js": [
"widgets/findagrave.js"
]
},
{
"matches": [
"*://www.genealogieonline.nl/*"
],
"run_at": "document_end",
"js": [
"widgets/genealogieonline-person.js"
]
},
{
"matches": [
"*://*.openarch.nl/show*"
],
"run_at": "document_end",
"js": [
"widgets/openarch-record.js"
]
}
]
}