Coppermine album downloader

Save images from specific album of coppermine galleries.

Vad är Coppermine album downloader?

Coppermine album downloader är en Chrome-tillägg utvecklad av nikkii, och dess huvudfunktion är "Save images from specific album of coppermine galleries.".

Tilläggsskärmbilder

screenshot

Ladda ner Coppermine album downloader-förlängningens CRX-fil

Ladda ner Coppermine album downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Coppermine album downloader Coppermine album downloader
ID magolbmjckjmhpmohfpomegcpmgfkpcm
Officiell webbadress https://chromewebstore.google.com/detail/coppermine-album-download/magolbmjckjmhpmohfpomegcpmgfkpcm
Beskrivning Save images from specific album of coppermine galleries.
Filstorlek 919 KB
Antal Installationer 970
Aktuell Version 1.0.35
Senast Uppdaterad 2018-05-16
Publiceringsdatum 2018-05-16
Betyg 4.19/5 Totalt 21 Betyg
Utvecklare nikkii
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}