PixPeeker

Hover Over links to see images overlaid on current page

PixPeeker là gì?

PixPeeker là một tiện ích mở rộng Chrome được phát triển bởi howlowck, và tính năng chính của nó là "Hover Over links to see images overlaid on current page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng PixPeeker

Tải xuống các tệp mở rộng PixPeeker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PixPeeker PixPeeker
ID lacjlgodidoaogaoldfodclplagkhegl
URL Chính Thức https://chrome.google.com/webstore/detail/pixpeeker/lacjlgodidoaogaoldfodclplagkhegl
Mô tả Hover Over links to see images overlaid on current page
Kích Thước Tệp 51.43 KB
Số Lần Cài Đặt 12
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2014-01-13
Ngày Phát Hành 2014-01-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển howlowck
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/howlowck/pixpeek
URL Trang Trợ Giúp https://github.com/howlowck/pixpeek/issues/new
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}