Coppermine album downloader
Save images from specific album of coppermine galleries.
Qu'est-ce que Coppermine album downloader ?
Coppermine album downloader est une extension Chrome développée par nikkii, et sa fonction principale est "Save images from specific album of coppermine galleries.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Coppermine album downloader
Téléchargez les fichiers d'extension Coppermine album downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Coppermine album downloader |
ID | magolbmjckjmhpmohfpomegcpmgfkpcm |
URL Officiel | https://chromewebstore.google.com/detail/coppermine-album-download/magolbmjckjmhpmohfpomegcpmgfkpcm |
Description | Save images from specific album of coppermine galleries. |
Taille du Fichier | 919 KB |
Nombre d'Installations | 970 |
Version Actuelle | 1.0.35 |
Dernière Mise à Jour | 2018-05-16 |
Date de Publication | 2018-05-16 |
Évaluation | 4.19/5 Total 21 Évaluations |
Développeur | nikkii |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |