PixPeeker
Hover Over links to see images overlaid on current page
What is PixPeeker?
PixPeeker is a Chrome extension developed by howlowck, and its main feature is "Hover Over links to see images overlaid on current page".
Extension Screenshots
Download PixPeeker Extension CRX File
Download PixPeeker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | lacjlgodidoaogaoldfodclplagkhegl |
Official URL | https://chrome.google.com/webstore/detail/pixpeeker/lacjlgodidoaogaoldfodclplagkhegl |
Description | Hover Over links to see images overlaid on current page |
File Size | 51.43 KB |
Installation Count | 12 |
Current Version | 0.0.6 |
Last Updated | 2014-01-13 |
Publish Date | 2014-01-13 |
Rating | 5.00/5 Total 1 Ratings |
Developer | howlowck |
Payment Type | free |
Extension Website | https://github.com/howlowck/pixpeek |
Help Page URL | https://github.com/howlowck/pixpeek/issues/new |
Supported Languages | 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" ] } ] } |