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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}