-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (42 loc) · 1.16 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
{
"manifest_version": 2,
"name": "Preloadify",
"version": "1.1.1",
"author": "Noah Becker",
"developer": {
"name": "Noah Becker",
"url": "https://noahbecker.xyz"
},
"description": "Preloadify uses preloading to make the web faster. It preloads links on mouse hover and makes them instantly available when you click them. This way, you can navigate faster through the web. This based on Simon Frey's Faster Pageload extension.",
"homepage_url": "https://github.com/1337Core/preloadify",
"icons": {
"48": "icons/rocket.svg",
"96": "icons/rocket.svg"
},
"options_ui": {
"page": "options.html"
},
"background": {
"scripts": ["js/background.js"]
},
"browser_specific_settings": {
"gecko": {
"id": "{e5de2393-6c71-4f74-9e27-5a8cf7f03a20}"
}
},
"web_accessible_resources": ["static/*"],
"browser_action": {
"default_icon": "icons/rocket.svg",
"default_title": "Faster Pageload"
},
"permissions": ["storage",
"webRequest",
"<all_urls>",
"webRequestBlocking"],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/instant_page.min.js", "js/lazy_images.js"]
}
]
}