PixPeeker

Hover Over links to see images overlaid on current page

什么是PixPeeker?

PixPeeker是由howlowck开发的Chrome扩展程序,该扩展的主要功能是“Hover Over links to see images overlaid on current page”。

扩展截图

screenshot

下载PixPeeker扩展crx文件

下载PixPeeker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}