Right Click Search

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

Right Click Search là gì?

Right Click Search là một tiện ích mở rộng Chrome được phát triển bởi Useful Extensions, và tính năng chính của nó là "With this extension, you can right click on a keyword to search for it on the web.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Right Click Search

Tải xuống các tệp mở rộng Right Click Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Right Click Search Right Click Search
ID fblpohokoofnfbggdpfgbcalhnhmbhpl
URL Chính Thức https://chromewebstore.google.com/detail/right-click-search/fblpohokoofnfbggdpfgbcalhnhmbhpl
Mô tả With this extension, you can right click on a keyword to search for it on the web.
Kích Thước Tệp 56.15 KB
Số Lần Cài Đặt 224
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-01-29
Ngày Phát Hành 2021-01-28
Nhà Phát Triển Useful Extensions
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật http://unico.news/privacypolicy.pdf
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}