Coppermine album downloader
Save images from specific album of coppermine galleries.
Coppermine album downloader란 무엇입니까?
Coppermine album downloader은(는) nikkii에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save images from specific album of coppermine galleries."입니다.
확장 프로그램 스크린샷
Coppermine album downloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Coppermine album downloader |
ID | magolbmjckjmhpmohfpomegcpmgfkpcm |
공식 URL | https://chromewebstore.google.com/detail/coppermine-album-download/magolbmjckjmhpmohfpomegcpmgfkpcm |
설명 | Save images from specific album of coppermine galleries. |
파일 크기 | 919 KB |
설치 횟수 | 970 |
현재 버전 | 1.0.35 |
최근 업데이트 | 2018-05-16 |
출시 날짜 | 2018-05-16 |
평점 | 4.19/5 총 21 개의 평점 |
개발자 | nikkii |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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" ] } |