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.”。

擴展截圖

screenshot

下載Coppermine album downloader擴展crx文件

下載Coppermine album downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Coppermine album downloader
ID magolbmjckjmhpmohfpomegcpmgfkpcm
官方網址 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"
    ]
}