-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
67 lines (67 loc) · 1.93 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"applications": {
"gecko": {
"id": "imageforward@sblask",
"strict_min_version": "57.0"
}
},
"author": "Sebastian Blask",
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
]
},
"browser_action": {
"browser_style": false,
"default_icon": "icon.svg",
"default_popup": "options/options.html",
"default_title": "Image Forward"
},
"commands": {
"abort-cycling": {
"description": "Abort cycling through images and go back to page of origin",
"suggested_key": {
"default": "Ctrl+Shift+B",
"windows": "Ctrl+Shift+X"
}
},
"cycle-through-embedded-images": {
"description": "Show first/next image embedded in page",
"suggested_key": {
"default": "Ctrl+Shift+Space",
"mac": "Alt+Shift+Space"
}
},
"cycle-through-linked-images": {
"description": "Show first/next image linked from page",
"suggested_key": {
"default": "Ctrl+Space",
"mac": "Alt+Space"
}
}
},
"description": "Easily cycle through images on a page or images linked from a page. Inspired by parts of Opera 12's Fast Forward.",
"homepage_url": "https://github.com/sblask/webextension-image-forward",
"icons": {
"128": "icon-128x128.png",
"16": "icon-16x16.png",
"32": "icon-32x32.png",
"48": "icon-48x48.png",
"64": "icon-64x64.png"
},
"manifest_version": 2,
"name": "Image Forward",
"options_ui": {
"page": "options/options.html"
},
"permissions": [
"<all_urls>",
"activeTab",
"storage",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"version": "2.0.6"
}