-
Notifications
You must be signed in to change notification settings - Fork 14
/
manifest.json
56 lines (55 loc) · 1.68 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
{
"manifest_version": 3,
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "4.11.3.1",
"icons": { "16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png" },
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "images/icon.png",
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": ["images/icon.png", "images/content_*.png"],
"matches" : [ "*://*/*"]
}
],
"content_scripts": [{
"matches": ["*://www.geni.com/*"],
"js": ["jquery.js", "jquery.csv.min.js", "moment.js", "parse-names.js", "shared.js", "content.js"]
}],
"permissions": ["scripting", "activeTab", "storage", "tabs", "declarativeNetRequestWithHostAccess", "offscreen"],
"sandbox": {
"pages": ["sandbox.html"]
},
"host_permissions" : [
"*://*.geni.com/",
"*://*.findagrave.com/",
"*://*.familysearch.org/",
"*://familysearch.org/",
"*://*.wikitree.com/",
"*://*.billiongraves.com/",
"*://billiongraves.com/",
"*://*.ancestrylibrary.com/",
"*://*.ancestry.com/",
"*://*.myheritage.com/",
"*://historylink.herokuapp.com/",
"*://maps.googleapis.com/",
"*://*.gravez.me/",
"*://gravez.me/",
"*://*.toldot.ru/",
"*://toldot.ru/",
"*://*.yadvashem.org/",
"*://yadvashem.org/",
"*://geneanet.org/",
"*://*.bezikaron.co.il/",
"*://bezikaron.co.il/"
]
}