-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
36 lines (36 loc) · 921 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
{
"name": "Slow looking",
"version": "1.0",
"description": "A Chrome extension that will allow you to slow look any IIIF served image featured on a website.",
"permissions": ["activeTab", "declarativeContent", "storage"],
"options_page": "options.html",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_popup": "options.html",
"default_icon": {
"16": "images/eye16.png",
"32": "images/eye32.png",
"48": "images/eye48.png",
"128": "images/eye128.png"
}
},
"icons": {
"16": "images/eye16.png",
"32": "images/eye32.png",
"48": "images/eye48.png",
"128": "images/eye128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["jquery-3.3.1.slim.min.js", "content.js"]
}
],
"web_accessible_resources": ["images/*.*"],
"manifest_version": 2
}