Amazon Search - Super speedy & easy

Amazon Search - Super speedy & easy

Quick and easy Amazon search - only 1 click or a shortcut to search Amazon products.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "link-o-mat UG",
  "background": {
    "persistent": false,
    "page": "data/background.html"
  },
  "content_scripts": [
    {
      "css": [],
      "js": [
        "data/js/3rdParty/jquery-2.1.3.min.js",
        "data/js/translation.js",
        "data/js/3rdParty/base64.js",
        "data/js/focus.js",
        "data/js/LomUtils.class.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_action": {
    "default_icon": "data/icon.png",
    "default_popup": "data/popup.html",
    "default_title": "Beste Amazon Suche im Browser"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+A",
        "windows": "Ctrl+Shift+A",
        "mac": "Command+MacCtrl+A",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      }
    }
  },
  "default_locale": "de",
  "description": "__MSG_manifest_description__",
  "icons": {
    "16": "data/icon16.png",
    "32": "data/icon32.png",
    "48": "data/icon48.png",
    "64": "data/icon64.png",
    "128": "data/icon128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "43",
  "name": "__MSG_manifest_name__",
  "permissions": [
    "tabs"
  ],
  "omnibox": {
    "keyword": "a"
  },
  "short_name": "__MSG_manifest_short_name__",
  "version": "1.1.8",
  "web_accessible_resources": [
    "data/img/*.*",
    "data/css/content.css"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}