Quick Search

Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.

什麼是Quick Search?

Quick Search是由https://serdar.work開發的Chrome擴展程式,該擴展的主要功能是“Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.”。

擴展截圖

screenshot

下載Quick Search擴展crx文件

下載Quick Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Select a text and hit:

- Alt+S to search on Google
- Alt+W to search on Wikipedia
- Alt+T to search on Twitter
- Alt+A to search on Amazon

- You can change the shortcuts. Use "Keyboard shortcuts" in the Chrome extension settings to do that.

- Click on the extension icon to enable / disable the extension temporarily.

- Google Translate search is removed in Version 2.0, due to Chrome's maximum shortcut limit of 4. It will be added soon with the context menu search feature.

- Customizing the websites to search will be possible with the options feature in the next version.

- This extension does not mess with your data. You can view the full source code of this extension at GitHub: https://github.com/serd/quick-search                    

擴展基本資訊

名稱 Quick Search Quick Search
ID chgmjmpmfefgaiogdnnjbfcbgcflofgi
官方網址 https://chromewebstore.google.com/detail/quick-search/chgmjmpmfefgaiogdnnjbfcbgcflofgi
簡介 Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.
檔案大小 10.28 KB
安裝次數 887
目前版本 2.0.2
更新時間 2022-05-08
上架時間 2017-05-28
評分 3.67/5 共 9 次評分
開發者 https://serdar.work
電子郵箱 [email protected]
付費類型 free
擴展官網 https://serdar.work
隱私政策頁面URL https://serdar.work/chrome-extensions/privacy-policy.html
支援的語言 en,tr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "2.0.2",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": [],
    "commands": {
        "search-google": {
            "description": "Search Google",
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            }
        },
        "search-wikipedia": {
            "description": "Search Wikipedia",
            "suggested_key": {
                "default": "Alt+W",
                "mac": "Alt+W"
            }
        },
        "search-amazon": {
            "description": "Search Amazon",
            "suggested_key": {
                "default": "Alt+A",
                "mac": "Alt+A"
            }
        },
        "search-twitter": {
            "description": "Search Twitter",
            "suggested_key": {
                "default": "Alt+T",
                "mac": "Alt+T"
            }
        }
    },
    "permissions": [
        "activeTab"
    ],
    "homepage_url": "https:\/\/serdar.work"
}