Hotkeys for Search

Perform a search for selected text using keyboard shortcuts.

Hotkeys for Searchคืออะไร?

Hotkeys for Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Juuso H และคุณลักษณะหลักของมันคือ "Perform a search for selected text using keyboard shortcuts."

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

screenshot
screenshot
screenshot

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

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

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

                        1. Select text on a web page using the mouse.
2. Press a keyboard shortcut to search for the selected text on your desired website.

Default shortcuts:
Alt+Q = Google
Alt+W = Wikipedia
Alt+A = Google Images
Alt+S = YouTube

The target search websites and keyboard shortcuts can be changed from the extension settings menu.

Source code: https://github.com/Juuso-h/hotkeys-for-search                    

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

ชื่อ Hotkeys for Search Hotkeys for Search
ID gfmeadbjkfhkeklgaomifcaihbhpeido
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hotkeys-for-search/gfmeadbjkfhkeklgaomifcaihbhpeido
คำอธิบาย Perform a search for selected text using keyboard shortcuts.
ขนาดไฟล์ 22.13 KB
จำนวนการติดตั้ง 1,779
เวอร์ชันปัจจุบัน 1.3.1
อัปเดตครั้งล่าสุด 2020-11-23
วันที่เผยแพร่ 2020-06-28
คะแนน 4.45/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา Juuso H
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Juuso-h/hotkeys-for-search
ภาษาที่รองรับ en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "version": "1.3.1",
    "manifest_version": 2,
    "description": "__MSG_description__",
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon.png",
        "128": "icon2.png"
    },
    "permissions": [
        "commands",
        "activeTab",
        "storage"
    ],
    "commands": {
        "search1": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Website 1"
        },
        "search2": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "Website 2"
        },
        "search3": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Website 3"
        },
        "search4": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Website 4"
        }
    },
    "browser_action": {
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}