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文件

下載Search Operators Cheatsheet擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        # 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
官方網址 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"
            ]
        }
    ]
}