PixPeeker
Hover Over links to see images overlaid on current page
PixPeekerคืออะไร?
PixPeeker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย howlowck และคุณลักษณะหลักของมันคือ "Hover Over links to see images overlaid on current page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PixPeeker
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } ] } |