-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
44 lines (43 loc) · 1.26 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
{
"name": "SSHY-selainlaajennus",
"description": "Käyttöliittymäparannuksia SSHY:n sivuille",
"version": "1.1",
"author": "Kari Kujansuu <[email protected]>",
"content_scripts": [
{
"matches": [
"*://*.sukuhistoria.fi/sshy/sivut/jasenille/paikat.php?*",
"*://*.digiarkisto.org/sshy/sivut/jasenille/paikat.php?*",
"*://*.sukuhistoria.fi/sshy/kirjat/Kirkonkirjat/*/*/*.htm",
"*://*.digiarkisto.org/sshy/kirjat/Kirkonkirjat/*/*/*.htm"
],
"all_frames": true,
"run_at": "document_idle",
"js": [
"jquery-3.4.0.min.js",
"jquery-ui.js",
"content.js"
],
"css":["jquery-ui.css","menu.css"]
}
],
"web_accessible_resources": [
"images/*.png"
],
"icons":{"48":"icons/sshy.png"},
"browser_action": {
"default_icon": {
"19": "icons/sshy.png",
"38": "icons/sshy.png"
},
"default_title": "SSHY-selainlaajennus",
"default_popup": "sshy.html"
},
"manifest_version": 2,
"permissions": [
"storage"
],
"options_ui": {
"page": "options.html"
}
}