Image Downloader
Download any image on your website page in one click!
Image Downloader là gì?
Image Downloader là một tiện ích mở rộng Chrome được phát triển bởi tiffanycheck.check, và tính năng chính của nó là "Download any image on your website page in one click!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Image Downloader
Tải xuống các tệp mở rộng Image Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
The extension gives the user the option to download images in different formats: PNG, JPG, SVG, WEBP
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | fnelomgkbbanddlflhgphgkijfeoehfb |
URL Chính Thức | https://chrome.google.com/webstore/detail/image-downloader/fnelomgkbbanddlflhgphgkijfeoehfb |
Mô tả | Download any image on your website page in one click! |
Kích Thước Tệp | 19.54 KB |
Số Lần Cài Đặt | 3,519 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2022-12-05 |
Ngày Phát Hành | 2022-11-28 |
Nhà Phát Triển | tiffanycheck.check |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://home.xcxologyda.xyz/ |
URL Trang Trợ Giúp | https://home.xcxologyda.xyz/contact.html |
Ngôn Ngữ Được Hỗ Trợ | 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": [ "*:\/\/*\/*" ] } |