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