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