Download Image from Context Menu
Adds a context (Right click) menu item to images which allows you to directly download them without a prompt.
Download Image from Context Menuคืออะไร?
Download Image from Context Menu เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Erisa A และคุณลักษณะหลักของมันคือ "Adds a context (Right click) menu item to images which allows you to directly download them without a prompt."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Download Image from Context Menu
ดาวน์โหลดไฟล์ส่วนขยาย Download Image from Context Menu ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension simply adds a context menu item which allows you to (Directly) download an image. The simple idea for this extension was born from saving multiple images at once, and rapidly pressing enter after each save to go through the "Save as" prompt.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Download Image from Context Menu |
ID | fihdnfkfpjmipmlggdknalpfjjnjbboj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/download-image-from-conte/fihdnfkfpjmipmlggdknalpfjjnjbboj |
คำอธิบาย | Adds a context (Right click) menu item to images which allows you to directly download them without a prompt. |
ขนาดไฟล์ | 29.35 KB |
จำนวนการติดตั้ง | 776 |
เวอร์ชันปัจจุบัน | 1.0.7 |
อัปเดตครั้งล่าสุด | 2022-08-05 |
วันที่เผยแพร่ | 2020-06-14 |
คะแนน | 4.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Erisa A |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Erisa/download-image |
URL หน้าช่วยเหลือ | https://github.com/Erisa/download-image |
URL หน้านโยบายความเป็นส่วนตัว | https://erisa.uk/privacy |
ภาษาที่รองรับ | en,pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Download Image from Context Menu", "description": "Adds a context (Right click) menu item to images which allows you to directly download them without a prompt.", "version": "1.0.7", "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html" }, "permissions": [ "contextMenus", "downloads", "storage" ], "browser_specific_settings": { "gecko": { "id": "{5ff1cbc2-229c-4f3f-ac0e-884fbc12670b}", "strict_min_version": "56.0" } }, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "128": "icons\/icon-128.png" } } |