Right Click Search

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

Cos'è Right Click Search?

Right Click Search è un'estensione di Chrome sviluppata da Useful Extensions, e la sua funzione principale è "With this extension, you can right click on a keyword to search for it on the web.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Right Click Search

Scarica i file di estensione Right Click Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Right Click Search Right Click Search
ID fblpohokoofnfbggdpfgbcalhnhmbhpl
URL Ufficiale https://chromewebstore.google.com/detail/right-click-search/fblpohokoofnfbggdpfgbcalhnhmbhpl
Descrizione With this extension, you can right click on a keyword to search for it on the web.
Dimensione del File 56.15 KB
Conteggio Installazioni 224
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-01-29
Data di Pubblicazione 2021-01-28
Sviluppatore Useful Extensions
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy http://unico.news/privacypolicy.pdf
Lingue Supportate 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"
    }
}