image-downloader
A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.
image-downloader là gì?
image-downloader là một tiện ích mở rộng Chrome được phát triển bởi joshua.lin870903, và tính năng chính của nó là "A webextension to make opening/downloading original(higher quaitiy) images and images organization easier.".
Ả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
This addon provides an additional context menu. This menu allows easier opening of images, even in the gallery view where such images are harder to access. Furthermore, it ensures the original quality image url is opened. Other Features: Prefix feature - to add prefix to the filename while downloading. Users can customize their prefix list in the "Preference" page. Twitter credit feature - to automatically detect the username of the Twitter post and add it to the filename when downloading images. Go to "Homepage" for more detail about this addon.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ![]() |
ID | dfddfklkbahiihjnfmpflfblacfjojjl |
URL Chính Thức | https://chrome.google.com/webstore/detail/image-downloader/dfddfklkbahiihjnfmpflfblacfjojjl |
Mô tả | A webextension to make opening/downloading original(higher quaitiy) images and images organization easier. |
Kích Thước Tệp | 20.77 KB |
Số Lần Cài Đặt | 39 |
Phiên Bản Hiện Tại | 0.2.11 |
Cập Nhật Lần Cuối | 2019-09-10 |
Ngày Phát Hành | 2019-09-10 |
Nhà Phát Triển | joshua.lin870903 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/JoshuaLin0903/image-downloader |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "image-downloader", "description": "A webextension to make opening\/downloading original(higher quaitiy) images and images organization easier.", "version": "0.2.11", "background": { "scripts": [ "background.js" ] }, "permissions": [ "contextMenus", "activeTab", "downloads", "storage", "tabs", "https:\/\/*\/*", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content_scripts\/menu_info.js" ], "all_frames": true } ], "options_ui": { "page": "settings\/options.html" } } |