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”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | lacjlgodidoaogaoldfodclplagkhegl |
官方網址 | 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" ] } ] } |