Search Operators Cheatsheet

Frequently used search operators with examples

Co to jest Search Operators Cheatsheet?

Search Operators Cheatsheet to rozszerzenie Chrome opracowane przez https://ilhan-mstf.github.io, a jego główną funkcją jest „Frequently used search operators with examples”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Search Operators Cheatsheet

Pobierz pliki rozszerzeń Search Operators Cheatsheet w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        # 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                    

Podstawowe informacje o rozszerzeniu

Nazwa Search Operators Cheatsheet Search Operators Cheatsheet
ID mnjgcpbkeklinnmgcjfefbcpkfblnmki
Oficjalny URL https://chromewebstore.google.com/detail/search-operators-cheatshe/mnjgcpbkeklinnmgcjfefbcpkfblnmki
Opis Frequently used search operators with examples
Rozmiar pliku 1.48 MB
Liczba instalacji 30
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2020-09-13
Data Publikacji 2020-04-08
Deweloper https://ilhan-mstf.github.io
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ilhan-mstf/search-operators-cheatsheet
Adres URL Strony Pomocy https://github.com/ilhan-mstf/search-operators-cheatsheet
Obsługiwane Języki 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"
            ]
        }
    ]
}