ImageSearcher

ImageSearcher

Powerful image search tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ImageSearcher",
  "description": "Powerful image search tool",
  "version": "1.0.1",
  "browser_action": {
    "default_icon": "Images/icons/256.png",
    "default_popup": "options.html"
  },
  "options_page": "options.html",
  "permissions": [
    "downloads",
    "notifications",
    "contextMenus",
    "tabs",
    "storage",
    "*://*.pictshare.net/",
    "*://images.google.com/*",
    "*://google.com/*",
    "*://yandex.ru/*",
    "activeTab",
    "<all_urls>",
    "http://*/",
    "https://*/"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "backgroundMain.js"
    ]
  },
  "web_accessible_resources": [
    "Images/icons/*.png"
  ],
  "commands": {
    "execute_imagesearch_script": {
      "suggested_key": {
        "default": "Ctrl+I",
        "mac": "Command+Shift+I"
      },
      "description": "Execute ImageSearch script"
    }
  },
  "icons": {
    "16": "Images/icons/16.png",
    "48": "Images/icons/48.png",
    "128": "Images/icons/128.png",
    "256": "Images/icons/256.png"
  }
}