QuickSearch

Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.

QuickSearchคืออะไร?

QuickSearch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kevin.kik.lee และคุณลักษณะหลักของมันคือ "Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab."

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

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

ดาวน์โหลดไฟล์ส่วนขยาย QuickSearch ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        - Cmd/Ctrl+Click to search in a new tab
- Cmd/Ctrl+Shft+Click to focus the new tab.
- Free and open-source forever
- A keyboard shortcut is coming soon

------------------------------------------------------------

Highlighting text, then right-clicking and selecting "Search Google for..." is an action I have conducted repeatedly throughout the day, every single day for probably a decade. I wanted to simplify the process by writing a small Chrome extension.

There is one more major functionality I would like to add (adding a keyboard shortcut), but all other changes will be related to maintenance and refactoring only.  If anyone has any ideas making the extension smaller and more efficient, please don't hesitate to contribute.  

GitHub:  https://github.com/kevinkiklee/quicksearch                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ QuickSearch QuickSearch
ID ffkkikfngfopgdacpankegfcjkcnkjle
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quicksearch/ffkkikfngfopgdacpankegfcjkcnkjle
คำอธิบาย Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.
ขนาดไฟล์ 11.05 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2017-11-25
วันที่เผยแพร่ 2017-11-25
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา kevin.kik.lee
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuickSearch",
    "short_name": "QuickSearch",
    "version": "0.0.2",
    "description": "Highlight any text on the page, and `Cmd\/Ctrl`+`Click` to search the selected text in a new tab.",
    "icons": {
        "16": "icons\/icon16.png",
        "64": "icons\/icon64.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon64.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}