PixPeeker

Hover Over links to see images overlaid on current page

Co je PixPeeker?

PixPeeker je rozšíření Chrome vyvinuté howlowck, a jeho hlavní funkcí je „Hover Over links to see images overlaid on current page“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření PixPeeker

Stáhněte si soubory rozšíření PixPeeker 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í

                        An extension for easy viewing when on image-centered sharing sites like reddit as it loads and renders the images on the current page when you hover over the link.

The extension works well with Imgur and Livememe.

Supports links that link to jpeg, png, and gif as well.

Hover over any text links or image links, you should see the image on the right upper corner.

No ad injections of course.  All the code is open source on github.                    

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

Název PixPeeker PixPeeker
ID lacjlgodidoaogaoldfodclplagkhegl
Oficiální URL https://chrome.google.com/webstore/detail/pixpeeker/lacjlgodidoaogaoldfodclplagkhegl
Popis Hover Over links to see images overlaid on current page
Velikost souboru 51.43 KB
Počet instalací 12
Aktuální Verze 0.0.6
Poslední Aktualizace 2014-01-13
Datum Vydání 2014-01-13
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář howlowck
Typ Platby free
Webové stránky Rozšíření https://github.com/howlowck/pixpeek
URL Stránky Nápovědy https://github.com/howlowck/pixpeek/issues/new
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.6",
    "name": "PixPeeker",
    "description": "Hover Over links to see images overlaid on current page",
    "browser_action": {
        "default_icon": "media\/on.png",
        "default_title": "PixPeeker-Enabled"
    },
    "permissions": [
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "events.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "app.js"
            ]
        }
    ]
}