Gmail™ Quick Search

Gmail™ Quick Search

Search as you Type on the first page of mail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gmail™ Quick Search",
  "version": "1.4",
  "manifest_version": 2,
  "description": "Search as you Type on the first page of mail.",
  "icons": {
    "48": "images/mail-search-48.png",
    "128": "images/mail-search-128.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "https://mail.google.com/"
  ],
  "web_accessible_resources": [
    "js/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "js/jquery-3.3.1.min.js",
        "js/content.js"
      ],
      "css": [
        "css/quicksearch.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}