Image Downloader
Download any image on your website page in one click!
Image Downloaderคืออะไร?
Image Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tiffanycheck.check และคุณลักษณะหลักของมันคือ "Download any image on your website page in one click!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Image Downloader
ดาวน์โหลดไฟล์ส่วนขยาย Image Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The extension gives the user the option to download images in different formats: PNG, JPG, SVG, WEBP
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | fnelomgkbbanddlflhgphgkijfeoehfb |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/image-downloader/fnelomgkbbanddlflhgphgkijfeoehfb |
คำอธิบาย | Download any image on your website page in one click! |
ขนาดไฟล์ | 19.54 KB |
จำนวนการติดตั้ง | 3,519 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2022-12-05 |
วันที่เผยแพร่ | 2022-11-28 |
ผู้พัฒนา | tiffanycheck.check |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://home.xcxologyda.xyz/ |
URL หน้าช่วยเหลือ | https://home.xcxologyda.xyz/contact.html |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": "logo.png", "default_title": "Image Downloader", "default_popup": "popup.html" }, "description": "Download any image on your website page in one click!", "icons": { "128": "logo.png" }, "manifest_version": 3, "name": "Image Downloader", "version": "1.1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "icons\/*.svg" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "host_permissions": [ "*:\/\/*\/*" ] } |