Gallery Downloader

Gallery Downloader

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

Merlin
Additional files are visible only to premium users

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": [
    "<all_urls>"
  ],
  "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"
  }
}