PixPeeker

Hover Over links to see images overlaid on current page

PixPeeker क्या है?

PixPeeker howlowck द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hover Over links to see images overlaid on current page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PixPeeker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम PixPeeker PixPeeker
ID lacjlgodidoaogaoldfodclplagkhegl
आधिकारिक URL https://chrome.google.com/webstore/detail/pixpeeker/lacjlgodidoaogaoldfodclplagkhegl
विवरण Hover Over links to see images overlaid on current page
फ़ाइल का आकार 51.43 KB
स्थापना संख्या 12
वर्तमान संस्करण 0.0.6
अंतिम अपडेट 2014-01-13
प्रकाशन तिथि 2014-01-13
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर howlowck
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/howlowck/pixpeek
सहायता पृष्ठ URL https://github.com/howlowck/pixpeek/issues/new
समर्थित भाषाएँ 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"
            ]
        }
    ]
}