Right Click Search

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

Vad är Right Click Search?

Right Click Search är en Chrome-tillägg utvecklad av Useful Extensions, och dess huvudfunktion är "With this extension, you can right click on a keyword to search for it on the web.".

Tilläggsskärmbilder

screenshot

Ladda ner Right Click Search-förlängningens CRX-fil

Ladda ner Right Click Search-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Right Click Search Right Click Search
ID fblpohokoofnfbggdpfgbcalhnhmbhpl
Officiell webbadress https://chromewebstore.google.com/detail/right-click-search/fblpohokoofnfbggdpfgbcalhnhmbhpl
Beskrivning With this extension, you can right click on a keyword to search for it on the web.
Filstorlek 56.15 KB
Antal Installationer 224
Aktuell Version 1.0.0
Senast Uppdaterad 2021-01-29
Publiceringsdatum 2021-01-28
Utvecklare Useful Extensions
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan http://unico.news/privacypolicy.pdf
Stödda Språk 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"
    }
}