Right Click Search

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

O que é Right Click Search?

Right Click Search é uma extensão do Chrome desenvolvida por Useful Extensions, e sua principal característica é "With this extension, you can right click on a keyword to search for it on the web.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Right Click Search

Baixe arquivos de extensão Right Click Search no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Right Click Search Right Click Search
ID fblpohokoofnfbggdpfgbcalhnhmbhpl
URL Oficial https://chromewebstore.google.com/detail/right-click-search/fblpohokoofnfbggdpfgbcalhnhmbhpl
Descrição With this extension, you can right click on a keyword to search for it on the web.
Tamanho do Arquivo 56.15 KB
Contagem de Instalações 224
Versão Atual 1.0.0
Última Atualização 2021-01-29
Data de Publicação 2021-01-28
Desenvolvedor Useful Extensions
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade http://unico.news/privacypolicy.pdf
Idiomas Suportados 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"
    }
}