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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Useful Extensions, και η κύρια λειτουργία του είναι "With this extension, you can right click on a keyword to search for it on the web.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Right Click Search

Λήψη αρχείων επέκτασης Right Click Search σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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