-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
46 lines (42 loc) · 1.09 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": "Faster Pageload",
"version": "1.8.5",
"author": "Simon Frey",
"developer": {
"name": "Simon Frey",
"url": "https://simon-frey.eu/"
},
"description": "Load webpages faster by preloading subsequent pages via the instant.page script. Install the plugin and you will feel how your browser becomes faster.",
"homepage_url": "https://github.com/simonfrey/faster-pageload-web-extensions",
"icons": {
"48": "icons/rocket.svg",
"96": "icons/rocket.svg"
},
"options_ui": {
"page": "options.html"
},
"background": {
"scripts": ["js/background.js"]
},
"browser_specific_settings": {
"gecko": {
"id": "{73c0257e-a620-4c48-a2a8-2a9e8481a0d4}"
}
},
"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"]
}
]
}