Right Click Search

With this extension, you can right click on a keyword to search for it on the web.

什麼是Right Click Search?

Right Click Search是由Useful Extensions開發的Chrome擴展程式,該擴展的主要功能是“With this extension, you can right click on a keyword to search for it on the web.”。

擴展截圖

screenshot

下載Right Click Search擴展crx文件

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

擴展使用說明

                        Right Click Search is a Chrome Extension.

This extension enables you to right click on a word while browsing the web and to search for the word that you right click on. 
 
This extension is free to download from the Chrome Web store.

By clicking "Add to Chrome", you accept and agree to install "Right Click Search" and set your New Tab search to www.yahoo.com as provided by the service under Terms of Use and Privacy Policy.

Please review our Privacy Policy for details regarding the information we collect when you install and use the extension. You can uninstall the program any time.

Terms of Service:
http://unico.news/terms.pdf

Privacy Policy:
http://unico.news/privacypolicy.pdf

Contact Us:
http://unico.news/#contactus                    

擴展基本資訊

名稱 Right Click Search Right Click Search
ID fblpohokoofnfbggdpfgbcalhnhmbhpl
官方網址 https://chromewebstore.google.com/detail/right-click-search/fblpohokoofnfbggdpfgbcalhnhmbhpl
簡介 With this extension, you can right click on a keyword to search for it on the web.
檔案大小 56.15 KB
安裝次數 224
目前版本 1.0.0
更新時間 2021-01-29
上架時間 2021-01-28
開發者 Useful Extensions
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL http://unico.news/privacypolicy.pdf
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Right Click Search",
    "manifest_version": 2,
    "version": "1.0.0",
    "description": "With this extension, you can right click on a keyword to search for it on the web.",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "search.js"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}