Search Operators Cheatsheet

Search Operators Cheatsheet

Frequently used search operators with examples

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Search Operators Cheatsheet",
  "description": "Frequently used search operators with examples",
  "version": "0.0.2",
  "homepage_url": "https://github.com/ilhan-mstf/search-operators-cheatsheet",
  "manifest_version": 2,
  "icons": {
    "16": "img/logo_16.png",
    "32": "img/logo_32.png",
    "64": "img/logo_64.png",
    "128": "img/logo_128.png"
  },
  "browser_action": {
    "default_popup": "hello.html",
    "default_icon": "img/logo_16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.google.com/search*"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}