Image Picka

Image Picka

An image downloader built with webextensions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "0.17.0",
  "name": "Image Picka",
  "description": "__MSG_extensionDescription__",
  "author": "eight",
  "homepage_url": "https://github.com/eight04/image-picka",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "55.0"
    }
  },
  "permissions": [
    "downloads",
    "storage",
    "contextMenus",
    "activeTab",
    "notifications",
    "<all_urls>"
  ],
  "optional_permissions": [
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "js/index-364a9d3c.js",
      "js/pref-6a887b3b.js",
      "js/expand-env-e773b89d.js",
      "js/readline-4ed4c2c9.js",
      "js/env-21317874.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/pref-6a887b3b.js",
        "js/env-21317874.js",
        "js/index-364a9d3c.js",
        "js/readline-4ed4c2c9.js",
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "web_accessible_resources": [
    "images/download-button.svg"
  ],
  "browser_action": {
    "default_title": "Pick Images",
    "default_icon": "images/icon.svg"
  },
  "icons": {
    "32": "images/icon.svg"
  },
  "default_locale": "en",
  "commands": {
    "_execute_browser_action": {},
    "PICK_FROM_CURRENT_TAB": {
      "description": "__MSG_commandPickFromHighlightedTab__"
    },
    "PICK_FROM_RIGHT_TABS_EXCLUDE_CURRENT": {
      "description": "__MSG_commandPickFromRightTabsExcludeCurrent__"
    },
    "PICK_FROM_RIGHT_TABS": {
      "description": "__MSG_commandPickFromRightTabs__"
    }
  }
}