One-Handed Image Downloader
A mouseless, fast & easy way to save pictures from any website
One-Handed Image Downloaderคืออะไร?
One-Handed Image Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gorgoroth และคุณลักษณะหลักของมันคือ "A mouseless, fast & easy way to save pictures from any website"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย One-Handed Image Downloader
ดาวน์โหลดไฟล์ส่วนขยาย One-Handed Image Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
// Update Keyboard shurtcut has changed to [Ctrl] + [K]. If you don't like it you can change in Chrome -> Tools -> Extension, scroll to the bottom and click "Keyboard shortcuts". Maybe you know this: Your browsing images, e.g. like on imgur, and suddenly you want to save an image. But your right hand is busy stirring your coffee, petting your cat or whatever. Maybe you're just some kind of homerow junkie that is repulsed by the thought of having to use the mouse. Don't worry, I'm not here to judge but to help. This is for you. The goal of this extension is to allow for one-handed, mouseless image saving operations on any website. If you active the extension via it's shortcut [Ctrl] + [K], one of two things happen: - if there is only one relevant image on the page, the download dialogue is opened if there are many relevant images on the page, you will be presented an overlay with the images. Each images is labeled with a number from 1 to 9 and you can download the image by hitting the number on your keyboard. Close the overlay with [Esc] or [Ctrl] + [Shift] + [K] Relevant pictures are either higher or wider than 350 px or a GIF. I will try to keep the gifs from polluting your results, if you notice any wrong GIFs being included, you're very welcome to open an issue or send a pull request.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | keomfdkndnlioinbbbpeebongahgdgid |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/one-handed-image-download/keomfdkndnlioinbbbpeebongahgdgid |
คำอธิบาย | A mouseless, fast & easy way to save pictures from any website |
ขนาดไฟล์ | 657 KB |
จำนวนการติดตั้ง | 590 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2014-02-19 |
วันที่เผยแพร่ | 2014-02-19 |
คะแนน | 2.54/5 รวมทั้งหมด 13 คะแนน |
ผู้พัฒนา | Gorgoroth |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Gorgoroth/One-Handed-Image-Downloader |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "One-Handed Image Downloader", "version": "1.0.1", "description": "A mouseless, fast & easy way to save pictures from any website", "permissions": [ "tabs", "http:\/\/*\/*" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "js\/jquery.js", "js\/contentscript.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ], "commands": { "save-image": { "description": "Saves the first image on the page", "suggested_key": { "default": "Ctrl+K", "linux": "Ctrl+K", "mac": "Command+K" } }, "close-overlay": { "description": "Closes the overlay", "suggested_key": { "default": "Ctrl+Shift+K", "mac": "Command+Shift+K" } } } } |