Search Operators Cheatsheet

Frequently used search operators with examples

O que é Search Operators Cheatsheet?

Search Operators Cheatsheet é uma extensão do Chrome desenvolvida por https://ilhan-mstf.github.io, e sua principal característica é "Frequently used search operators with examples".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Search Operators Cheatsheet

Baixe arquivos de extensão Search Operators Cheatsheet no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        # 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                    

Informações Básicas da Extensão

Nome Search Operators Cheatsheet Search Operators Cheatsheet
ID mnjgcpbkeklinnmgcjfefbcpkfblnmki
URL Oficial https://chromewebstore.google.com/detail/search-operators-cheatshe/mnjgcpbkeklinnmgcjfefbcpkfblnmki
Descrição Frequently used search operators with examples
Tamanho do Arquivo 1.48 MB
Contagem de Instalações 30
Versão Atual 0.0.2
Última Atualização 2020-09-13
Data de Publicação 2020-04-08
Desenvolvedor https://ilhan-mstf.github.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ilhan-mstf/search-operators-cheatsheet
URL da Página de Ajuda https://github.com/ilhan-mstf/search-operators-cheatsheet
Idiomas Suportados 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"
            ]
        }
    ]
}