ImageScrapper

ImageScrapper

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

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "js": [
        "scripts/miner.js",
        "scripts/script.js"
      ]
    }
  ],
  "options_page": "settings/settings.html",
  "permissions": [
    "<all_urls>",
    "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/"
    ]
  }
}