PixPeeker

Hover Over links to see images overlaid on current page

Co to jest PixPeeker?

PixPeeker to rozszerzenie Chrome opracowane przez howlowck, a jego główną funkcją jest „Hover Over links to see images overlaid on current page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia PixPeeker

Pobierz pliki rozszerzeń PixPeeker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa PixPeeker PixPeeker
ID lacjlgodidoaogaoldfodclplagkhegl
Oficjalny URL https://chrome.google.com/webstore/detail/pixpeeker/lacjlgodidoaogaoldfodclplagkhegl
Opis Hover Over links to see images overlaid on current page
Rozmiar pliku 51.43 KB
Liczba instalacji 12
Aktualna Wersja 0.0.6
Ostatnia Aktualizacja 2014-01-13
Data Publikacji 2014-01-13
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper howlowck
Typ Płatności free
Strona Rozszerzenia https://github.com/howlowck/pixpeek
Adres URL Strony Pomocy https://github.com/howlowck/pixpeek/issues/new
Obsługiwane Języki 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"
            ]
        }
    ]
}