Search Operators Cheatsheet

Frequently used search operators with examples

Search Operators Cheatsheet란 무엇입니까?

Search Operators Cheatsheet은(는) https://ilhan-mstf.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Frequently used search operators with examples"입니다.

확장 프로그램 스크린샷

screenshot

Search Operators Cheatsheet 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        # 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                    

확장 프로그램 기본 정보

이름 Search Operators Cheatsheet Search Operators Cheatsheet
ID mnjgcpbkeklinnmgcjfefbcpkfblnmki
공식 URL https://chromewebstore.google.com/detail/search-operators-cheatshe/mnjgcpbkeklinnmgcjfefbcpkfblnmki
설명 Frequently used search operators with examples
파일 크기 1.48 MB
설치 횟수 30
현재 버전 0.0.2
최근 업데이트 2020-09-13
출시 날짜 2020-04-08
개발자 https://ilhan-mstf.github.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ilhan-mstf/search-operators-cheatsheet
도움말 페이지 URL https://github.com/ilhan-mstf/search-operators-cheatsheet
지원되는 언어 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"
            ]
        }
    ]
}