Search Operators Cheatsheet

Frequently used search operators with examples

Search Operators Cheatsheet là gì?

Search Operators Cheatsheet là một tiện ích mở rộng Chrome được phát triển bởi https://ilhan-mstf.github.io, và tính năng chính của nó là "Frequently used search operators with examples".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Search Operators Cheatsheet

Tải xuống các tệp mở rộng Search Operators Cheatsheet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        # 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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Search Operators Cheatsheet Search Operators Cheatsheet
ID mnjgcpbkeklinnmgcjfefbcpkfblnmki
URL Chính Thức https://chromewebstore.google.com/detail/search-operators-cheatshe/mnjgcpbkeklinnmgcjfefbcpkfblnmki
Mô tả Frequently used search operators with examples
Kích Thước Tệp 1.48 MB
Số Lần Cài Đặt 30
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2020-09-13
Ngày Phát Hành 2020-04-08
Nhà Phát Triển https://ilhan-mstf.github.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ilhan-mstf/search-operators-cheatsheet
URL Trang Trợ Giúp https://github.com/ilhan-mstf/search-operators-cheatsheet
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}