Right Click Search

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

Was ist Right Click Search?

Right Click Search ist eine Chrome-Erweiterung, die von Useful Extensions entwickelt wurde, und ihr Hauptmerkmal ist "With this extension, you can right click on a keyword to search for it on the web.".

Erweiterungsscreenshots

screenshot

Right Click Search-Erweiterungs-CRX-Datei herunterladen

Laden Sie Right Click Search-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Right Click Search Right Click Search
ID fblpohokoofnfbggdpfgbcalhnhmbhpl
Offizielle URL https://chromewebstore.google.com/detail/right-click-search/fblpohokoofnfbggdpfgbcalhnhmbhpl
Beschreibung With this extension, you can right click on a keyword to search for it on the web.
Dateigröße 56.15 KB
Installationsanzahl 224
Aktuelle Version 1.0.0
Letztes Update 2021-01-29
Veröffentlichungsdatum 2021-01-28
Entwickler Useful Extensions
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite http://unico.news/privacypolicy.pdf
Unterstützte Sprachen 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"
    }
}