Coppermine album downloader

Save images from specific album of coppermine galleries.

ما هو Coppermine album downloader؟

Coppermine album downloader هو إضافة Chrome تم تطويرها بواسطة nikkii، والميزة الرئيسية لها هي "Save images from specific album of coppermine galleries.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Coppermine album downloader

قم بتنزيل ملفات الامتداد Coppermine album downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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"
    ]
}