Gallery Downloader

Download image galleries, videos, or anything else with the help of user created rule sets.

Gallery Downloaderคืออะไร?

Gallery Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chrm และคุณลักษณะหลักของมันคือ "Download image galleries, videos, or anything else with the help of user created rule sets."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gallery Downloader

ดาวน์โหลดไฟล์ส่วนขยาย Gallery Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Gallery Downloader makes it possible to download things that belong together with only one click. Like all the photos in a facebook photo stream, or a flickr photo gallery.

Gallery Downloader also makes it possible to download things you can't  normally download, because they don't have a download button. Like videos on vimeo.

You can use Gallery Downloader for every website. But if no appropriate rule is included you have to make your own with regular expressions and xpath.

=== Try It ===

- go to https://goo.gl/ADzkbV
- click on the Gallery Downloader icon to open the popup
- click on "download" to start the download
- (only the first time on a website) click on "allow" to give Gallery Downloader the permission to access this host
- when the first image started downloading you can click on "open folder" to see where the files get saved

=== Included Rules ===

Version 0.9 beta comes with the following example rules:

- flickr.com galleries and albums
- facebook.com photo streams and albums for people and sites
- arte.tv videos
- vimeo.com videos
- mangahere.co mangas

=== Creating Additional Rules ===

The two most important parts of any rule are a regular expression and a xpath expression. The regular expression determines on which sites the rule gets executed. The xpath expression selects the elements from the DOM which get downloaded. You can add new rules on the options page for Gallery Downloader on chrome://extensions/

=== Known Bugs / Limitations ===

- when the layout of a website changes the rules no longer work and have to be updated
- the download shelf bar is turned off
- if you clear the downloads in chromes download tab manually, the "open folder" buttons for the corresponding items no longer work

=== Bugreports And Suggestions ===

Mail them to [email protected]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gallery Downloader Gallery Downloader
ID ooeanhhfalkkenenbllhmlpllnkebgho
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/gallery-downloader/ooeanhhfalkkenenbllhmlpllnkebgho
คำอธิบาย Download image galleries, videos, or anything else with the help of user created rule sets.
ขนาดไฟล์ 661 KB
จำนวนการติดตั้ง 4,000
เวอร์ชันปัจจุบัน 0.9.2
อัปเดตครั้งล่าสุด 2015-08-07
วันที่เผยแพร่ 2015-08-07
คะแนน 1.71/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา chrm
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gallery Downloader",
    "description": "Download image galleries, videos, or anything else with the help of user created rule sets.",
    "version": "0.9.2",
    "version_name": "beta",
    "background": {
        "scripts": [
            "util.js",
            "backgroundscript-rules.js",
            "backgroundscript.js"
        ],
        "persistent": false
    },
    "content_scripts": [],
    "browser_action": {
        "default_title": "gallery downloader",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "icon-19x19.png",
            "38": "icon-38x38.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent",
        "downloads",
        "downloads.shelf",
        "tabs"
    ],
    "optional_permissions": [
        ""
    ],
    "web_accessible_resources": [
        "util.js",
        "contentscript-active-tab.js",
        "icon-16x16.png",
        "icon-19x19.png",
        "icon-32x32.png",
        "icon-38x38.png",
        "icon-48x48.png",
        "icon-128x128.png"
    ],
    "icons": {
        "16": "icon-16x16.png",
        "19": "icon-19x19.png",
        "32": "icon-32x32.png",
        "38": "icon-38x38.png",
        "48": "icon-48x48.png",
        "128": "icon-128x128.png"
    }
}