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
官方URL 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"
    }
}