Different Search

Different Search

New way to search...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Different Search",
  "description": "New way to search...",
  "version": "0.0.2",
  "minimum_chrome_version": "38",
  "permissions": [
    "contextMenus"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+Shift+U",
        "mac": "Command+U"
      }
    }
  },
  "browser_action": {
    "default_title": "Search Web",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "srch.png",
    "128": "srch.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "jquery.min.js",
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}