-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
39 lines (39 loc) · 962 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,
"description": "Search across multiple genealogy sites for matching records.",
"name": "RootsSearch",
"version": "3.7.1",
"permissions": [
"tabs",
"storage",
"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"
},
"options_page": "options/options.html",
"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": [
"<all_urls>"
],
"run_at": "document_end",
"js": [
"includes/jquery.js",
"includes/genscrape.0.1.2.js",
"includes/scraper.js"
]
}
]
}