Search Operators Cheatsheet

Frequently used search operators with examples

What is Search Operators Cheatsheet?

Search Operators Cheatsheet is a Chrome extension developed by https://ilhan-mstf.github.io, and its main feature is "Frequently used search operators with examples".

Extension Screenshots

screenshot

Download Search Operators Cheatsheet Extension CRX File

Download Search Operators Cheatsheet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        # Search Operators Cheatsheet
This extension aims to remind you search operators that are used to refine search results. The extension just gives examples of them.

It doesn't aim to replace Google Advanced Search.

This extension doesn't collect any user and web page information. It only runs on google.com. It is free to use.

## Contributions
Contributions are welcome.

Release Log:
------------
Version 0.0.2:
- Style fix

Version 0.0.1:
- Initial Release                    

Extension Basic Information

Name Search Operators Cheatsheet Search Operators Cheatsheet
ID mnjgcpbkeklinnmgcjfefbcpkfblnmki
Official URL https://chromewebstore.google.com/detail/search-operators-cheatshe/mnjgcpbkeklinnmgcjfefbcpkfblnmki
Description Frequently used search operators with examples
File Size 1.48 MB
Installation Count 30
Current Version 0.0.2
Last Updated 2020-09-13
Publish Date 2020-04-08
Developer https://ilhan-mstf.github.io
Email [email protected]
Payment Type free
Extension Website https://github.com/ilhan-mstf/search-operators-cheatsheet
Help Page URL https://github.com/ilhan-mstf/search-operators-cheatsheet
Supported Languages en
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"
            ]
        }
    ]
}