PixPeeker
Hover Over links to see images overlaid on current page
Apa itu PixPeeker?
PixPeeker adalah ekstensi Chrome yang dikembangkan oleh howlowck, dan fitur utamanya adalah "Hover Over links to see images overlaid on current page".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi PixPeeker
Unduh file ekstensi PixPeeker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | lacjlgodidoaogaoldfodclplagkhegl |
URL Resmi | https://chrome.google.com/webstore/detail/pixpeeker/lacjlgodidoaogaoldfodclplagkhegl |
Deskripsi | Hover Over links to see images overlaid on current page |
Ukuran File | 51.43 KB |
Jumlah Instalasi | 12 |
Versi Saat Ini | 0.0.6 |
Terakhir Diperbarui | 2014-01-13 |
Tanggal Publikasi | 2014-01-13 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | howlowck |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/howlowck/pixpeek |
URL Halaman Bantuan | https://github.com/howlowck/pixpeek/issues/new |
Bahasa yang Didukung | 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" ] } ] } |