-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
25 lines (22 loc) · 1008 Bytes
/
manifest.json
File metadata and controls
25 lines (22 loc) · 1008 Bytes
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
{
"manifest_version": 2,
"name": "Error Reloader",
"description": "On slow and unreliable connections it's common to stop after presenting an error to the user. On unreliable networks such as the internet this behaviour is a mistake - the correct behaviour should be to minimize user intervention by continually retrying the resource until the transient error goes away. This browser extension corrects that oversight by automaticly reloading the resource if a transient error occurs.",
"version": "1.0",
"background": {
"scripts": ["uri.js", "background.js"]
},
"icons": {
"16": "icons/reloader-16.png",
"19": "icons/reloader-19.png",
"48": "icons/reloader-48.png",
"128": "icons/reloader-128.png"
},
"permissions": ["tabs", "webRequest", "<all_urls>"],
"browser_action": {
"default_icon": "icons/reloader-19.png",
"default_title": "Toggle Error Reloader"
},
"author": "Daniel Fisher",
"homepage_url": "https://github.com/stormsaber/error-reloader-extension"
}