ImageScrapper

Download thousands of pictures from your favourite site with just one click.Makes web scrapping easier.

ImageScrapperคืออะไร?

ImageScrapper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย varshneyabhushan และคุณลักษณะหลักของมันคือ "Download thousands of pictures from your favourite site with just one click.Makes web scrapping easier."

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

screenshot

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

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

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

                        Some times,we want to download thousands of images that may or may not be exactly on the same page which should be done by navigating to all those images manually.But,with this app mentioning the pattern of location of images we can download thousands of pictures with just one click!.


Features

1.This can also be used to download files of other type (example : pdf)
2. We can also choose to upload the images directly to google photos (takes up memory from google drive quota )
3.Ability to pause downloads or download images in the deserved order.
4.Save the list of URLs to chrome's local storage to download later.
5.Import and export configurations.

Configurations

See the website link for the detailed description

https://github.com/Varshneyabhushan/imageScrapper                    

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

ชื่อ ImageScrapper ImageScrapper
ID iobhdbbomjpihclcfdcedekcigollffc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/imagescrapper/iobhdbbomjpihclcfdcedekcigollffc
คำอธิบาย Download thousands of pictures from your favourite site with just one click.Makes web scrapping easier.
ขนาดไฟล์ 23.66 KB
จำนวนการติดตั้ง 747
เวอร์ชันปัจจุบัน 3.1.2
อัปเดตครั้งล่าสุด 2019-03-20
วันที่เผยแพร่ 2019-03-20
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา varshneyabhushan
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Varshneyabhushan/imageScrapper
URL หน้าช่วยเหลือ https://github.com/Varshneyabhushan/imageScrapper/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ImageScrapper",
    "version": "3.1.2",
    "manifest_version": 2,
    "description": "Download thousands of pictures from your favourite site with just one click.Makes web scrapping easier.",
    "icons": {
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/miner.js",
                "scripts\/script.js"
            ]
        }
    ],
    "options_page": "settings\/settings.html",
    "permissions": [
        "",
        "downloads",
        "tabs",
        "activeTab",
        "storage",
        "identity"
    ],
    "browser_action": {
        "default_title": "Downloadlist"
    },
    "background": {
        "scripts": [
            "background\/downloader.js",
            "background\/googlePhotosAPI.js",
            "background\/background.js"
        ]
    },
    "oauth2": {
        "client_id": "427921884066-7iuaqiumsgsr0hgu0o295sc0t9uhpn69.apps.googleusercontent.com",
        "project_id": "imagescrapper-217205",
        "auth_uri": "https:\/\/accounts.google.com\/o\/oauth2\/auth",
        "token_uri": "https:\/\/oauth2.googleapis.com\/token",
        "auth_provider_x509_cert_url": "https:\/\/www.googleapis.com\/oauth2\/v1\/certs",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/photoslibrary"
        ]
    },
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/jazmine.herokuapp.com\/"
        ]
    }
}