Renren Album Downloader

Download Renren album with one click.

Renren Album Downloader क्या है?

Renren Album Downloader Scott Cheng द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download Renren album with one click."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Renren Album Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Renren Album Downloader packs up all the photos in an arbitrary Renren album in a zip, and sends it to your disk.

Now supports full-size photo download! You can opt-out in the option page.


How to use
----

1. Go to a Renren album that you want.
   * Currently only supports user albums. Public page albums will be supported in future releases.
   * Not a album share page (yet). If you happen to be in a album share page, please click on the link below the album name to the real album page.

2. Click "Download album".

3. Wait for the page to automatically scroll to the bottom, and the zip to download.
   * Do *NOT* leave the album page (e.g. click a link on the page) or close the tab until the download finish. Feel free to switch to other tabs, though.

4. Inside of the zip, you will find a folder named renren-album-${albumId}, inside of which all the photos are named with its index in the album. Also there is an info.html, where you can view the album in a new way, with the album name, description, and photo titles.


Known Issues
----

* Could crash Chrome when downloading *huge* albums, say 500-photo albums.

* Naming folders / files with Chinese characters sometimes leads to corrupted zips. Therefore, all the Chinese stuff (album name, album description, and photo descriptions) are put into info.html, rather than used in folder / file names.


Feedback
----

Any feedback is welcomed, but if you expect my response (and you probably do), please post them on the feedback page (http://goo.gl/SIUOF) or on GitHub, because I cannot respond to your web store review in any way!


License
----

Renren Album Downloader is released under the MIT license.
https://github.com/scottcheng/renren-album-downloader                    

एक्सटेंशन की मूल जानकारी

नाम Renren Album Downloader Renren Album Downloader
ID enmkdplopmpkfnlefdldpkbcmihgcdec
आधिकारिक URL https://chromewebstore.google.com/detail/renren-album-downloader/enmkdplopmpkfnlefdldpkbcmihgcdec
विवरण Download Renren album with one click.
फ़ाइल का आकार 132 KB
स्थापना संख्या 4,000
वर्तमान संस्करण 2.4.18
अंतिम अपडेट 2013-07-15
प्रकाशन तिथि 2013-07-14
रेटिंग 3.13/5 कुल 39 रेटिंग्स
डेवलपर Scott Cheng
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/scottcheng/renren-album-downloader
समर्थित भाषाएँ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "2.4.18",
    "manifest_version": 2,
    "description": "__MSG_extDesc__",
    "permissions": [
        "*:\/\/*.rrimg.com\/",
        "*:\/\/*.rrfmn.com\/",
        "*:\/\/*.xnpic.com\/",
        "*:\/\/*.xnimg.cn\/",
        "*:\/\/*.xiaonei.com\/",
        "*:\/\/photo.renren.com\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/photo.renren.com\/getalbumprofile.do?owner=*",
                "*:\/\/photo.renren.com\/photo\/*album-*"
            ],
            "js": [
                "lib\/jquery-binary-ajax.js",
                "lib\/jszip.js",
                "lib\/base64ArrayBuffer.js",
                "lib\/FileSaver.min.js",
                "lib\/jquery.tmpl.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "style.css",
        "info.tmpl.html",
        "ui\/download.png",
        "ui\/checkmark.png"
    ],
    "options_page": "options.html",
    "default_locale": "zh_CN",
    "icons": {
        "16": "ui\/logo_16.png",
        "48": "ui\/logo_48.png",
        "128": "ui\/logo_128.png"
    }
}