Click dictionary

Double click on words to see their definition

Τι είναι το Click dictionary;

Το Click dictionary είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον newdev, και η κύρια λειτουργία του είναι "Double click on words to see their definition".

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

screenshot

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

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

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

                        This extension saves you time when reading text on a web page, in a foreign language, by allowing you to double click on the words you don't understand and providing you an intuitive translation popup.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Click dictionary Click dictionary
ID edeopnindailmgjakdinjklkakmhlmpg
Επίσημο URL https://chromewebstore.google.com/detail/click-dictionary/edeopnindailmgjakdinjklkakmhlmpg
Περιγραφή Double click on words to see their definition
Μέγεθος Αρχείου 33.22 KB
Αριθμός Εγκαταστάσεων 1,570
Τρέχουσα Έκδοση 1.4.3
Τελευταία Ενημέρωση 2023-01-31
Ημερομηνία Δημοσίευσης 2017-10-31
Αξιολόγηση 4.09/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής newdev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "newDev",
    "manifest_version": 3,
    "name": "Click dictionary",
    "short_name": "Click dict.",
    "description": "Double click on words to see their definition",
    "version": "1.4.3",
    "action": {
        "default_popup": "\/src\/modules\/action\/action.html"
    },
    "icons": {
        "48": "\/src\/icon\/icon48.png",
        "128": "\/src\/icon\/icon128.png"
    },
    "background": {
        "service_worker": "\/src\/modules\/dictionary-popup\/eventPage.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "\/src\/modules\/dictionary-popup\/dictionary-popup.css"
            ],
            "js": [
                "\/src\/modules\/dictionary-popup\/dictionary-popup.js"
            ]
        }
    ],
    "options_page": "\/src\/modules\/options\/options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "\/src\/utils\/languageSettings.js",
                "\/src\/utils\/htmlUtils.js",
                "\/src\/utils\/resultTable.js",
                "\/src\/utils\/disabledUrlService.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}