Imgur Viewer

A chrome extension to provide better Imgur album/gallery viewing with images fitted to the window and easy navigation

Co je Imgur Viewer?

Imgur Viewer je rozšíření Chrome vyvinuté imgurviewerdev, a jeho hlavní funkcí je „A chrome extension to provide better Imgur album/gallery viewing with images fitted to the window and easy navigation“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Imgur Viewer

Stáhněte si soubory rozšíření Imgur Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        View Imgur albums like you truly want: with all images fitted to window size and easy navigation. This extension creates a button in the header of any Imgur album/gallery page to spawn the viewer. Images can be navigated with two sets of keybindings: gamer(a, d) and vim(h, l). See the github README for more information --> https://github.com/mpeterdev/imgurviewer                    

Základní Informace o Rozšíření

Název Imgur Viewer Imgur Viewer
ID fonhhggcblkogdhakpmdihmmhgigdbdn
Oficiální URL https://chrome.google.com/webstore/detail/imgur-viewer/fonhhggcblkogdhakpmdihmmhgigdbdn
Popis A chrome extension to provide better Imgur album/gallery viewing with images fitted to the window and easy navigation
Velikost souboru 2.72 MB
Počet instalací 933
Aktuální Verze 1.0.0
Poslední Aktualizace 2018-03-05
Datum Vydání 2018-03-05
Hodnocení 3.20/5 Celkem 5 Hodnocení
Vývojář imgurviewerdev
E-mail [email protected]
Typ Platby free
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Imgur Viewer",
    "description": "A chrome extension to provide better Imgur album\/gallery viewing with images fitted to the window and easy navigation",
    "version": "1.0.0",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/imgur.com\/a\/*",
                "https:\/\/imgur.com\/gallery\/*"
            ],
            "js": [
                "viewer.js"
            ]
        }
    ]
}