Coppermine album downloader
Save images from specific album of coppermine galleries.
Coppermine album downloader là gì?
Coppermine album downloader là một tiện ích mở rộng Chrome được phát triển bởi nikkii, và tính năng chính của nó là "Save images from specific album of coppermine galleries.".
Ả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 Coppermine album downloader
Tải xuống các tệp mở rộng Coppermine album 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
Save all images from coppermine gallery albums with a single click. Works on albums which has less than 1000 images. Click on the Download button in the extension's popup to start. Returns a zip file with all images. If you want to download the full album, make sure you're on the first page of the album.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Coppermine album downloader |
ID | magolbmjckjmhpmohfpomegcpmgfkpcm |
URL Chính Thức | https://chromewebstore.google.com/detail/coppermine-album-download/magolbmjckjmhpmohfpomegcpmgfkpcm |
Mô tả | Save images from specific album of coppermine galleries. |
Kích Thước Tệp | 919 KB |
Số Lần Cài Đặt | 970 |
Phiên Bản Hiện Tại | 1.0.35 |
Cập Nhật Lần Cuối | 2018-05-16 |
Ngày Phát Hành | 2018-05-16 |
Đánh Giá | 4.19/5 Tổng số 21 Đánh Giá |
Nhà Phát Triển | nikkii |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Save images from specific album of coppermine galleries.", "version": "1.0.35", "name": "Coppermine album downloader", "background": { "scripts": [ "background.js" ], "persistent": true }, "page_action": { "default_popup": "popup.html", "default_title": "Coppermine Album Downloader", "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" } }, "icons": { "16": "icon-16-disabled.png", "32": "icon-32-disabled.png", "48": "icon-48-disabled.png", "128": "icon-128-disabled.png" }, "permissions": [ "activeTab", "declarativeContent" ], "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/*\/thumbnails.php?album=*", "https:\/\/*\/thumbnails.php?album=*" ], "css": [ "content.css" ] } ], "web_accessible_resources": [ "content.css", "download.svg" ] } |