ImageScrapper

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

ImageScrapper란 무엇입니까?

ImageScrapper은(는) varshneyabhushan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download thousands of pictures from your favourite site with just one click.Makes web scrapping easier."입니다.

확장 프로그램 스크린샷

screenshot

ImageScrapper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/"
        ]
    }
}