Image Forward

Easily cycle through images on a page or images linked from a page. Inspired by parts of Opera 12's Fast Forward.

Qu'est-ce que Image Forward ?

Image Forward est une extension Chrome développée par Sebastian Blask, et sa fonction principale est "Easily cycle through images on a page or images linked from a page. Inspired by parts of Opera 12's Fast Forward.".

Télécharger le fichier CRX de l'extension Image Forward

Téléchargez les fichiers d'extension Image Forward au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Image Forward
=============

A webextension to easily go through images embedded on or linked from a web page.

Note for Chrome
---------------

Keyboard shortcuts are not automatically set up. You need to do that manually on the extension page in settings. These are the default ones:

 - Abort cycling through images and go back to page of origin: Ctrl+Shift+B
 - Show first/next image embedded in page: Ctrl+Shift+Space
 - Show first/next image linked from page: Ctrl+Space

Example
-------


If you are on `page_one`  that contains 3 images, you can press `Ctrl-Shift-Space` to load `image_one` as if you had right clicked it and chosen `View Image`. Press again and `image_two` is loaded (without having to go back to `page_one` and click on it), again and `image_three` is loaded. One more press will bring you back two `page_one`. At any time you could have pressed `Ctrl-Shift-B` to go straight back to `page_one`. Images are only loaded if they are bigger than what's configured in the add-on's options, otherwise they are skipped. A real example where you can do this is http://www.boston.com/bigpicture/.


Similarly, if you are on `page_two` that links to a bunch of images, you can press `Ctrl-Space` to load first `image.jpg`, then `image.png` and then go back to `page_two`. The images that are loadable are determined by a regular expression that you can configure in the options. Add `tiff` to also load any tiff image or match any page that you want to load. An example where this works is https://www.reddit.com/r/wallpaper which however contains many links to pages instead of images, so you have to check out the options.

Due to conflicts, you can use `Alt-Shift-Space` and `Alt-Space` instead of the default shortcuts to load images on Mac and `Ctrl-Shift-X` to go back in Windows.

Inspired by parts of Opera 12's Fast Forward.

Feedback
--------

You can report bugs or make feature requests on https://github.com/sblask/webextension-image-forward

Patches are welcome.                    

Informations de Base sur l'Extension

Nom Image Forward Image Forward
ID cbobjpdibmfkpndblfdclhldkachjcme
URL Officiel https://chrome.google.com/webstore/detail/cbobjpdibmfkpndblfdclhldkachjcme
Description Easily cycle through images on a page or images linked from a page. Inspired by parts of Opera 12's Fast Forward.
Taille du Fichier 101 KB
Nombre d'Installations 28
Version Actuelle 2.0.6
Dernière Mise à Jour 2017-10-10
Date de Publication 2017-10-10
Développeur Sebastian Blask
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/sblask/webextension-image-forward
URL de la Page d'Aide https://github.com/sblask/webextension-image-forward
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sebastian Blask",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "browser_action": {
        "browser_style": false,
        "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": [
        "",
        "activeTab",
        "storage",
        "webNavigation",
        "webRequest",
        "webRequestBlocking"
    ],
    "version": "2.0.6"
}