Coppermine album downloader
Save images from specific album of coppermine galleries.
Coppermine album downloader क्या है?
Coppermine album downloader nikkii द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save images from specific album of coppermine galleries."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Coppermine album downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |