Search Operators Cheatsheet

Frequently used search operators with examples

Search Operators Cheatsheetคืออะไร?

Search Operators Cheatsheet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ilhan-mstf.github.io และคุณลักษณะหลักของมันคือ "Frequently used search operators with examples"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Search Operators Cheatsheet

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}