Click dictionary

Double click on words to see their definition

Was ist Click dictionary?

Click dictionary ist eine Chrome-Erweiterung, die von newdev entwickelt wurde, und ihr Hauptmerkmal ist "Double click on words to see their definition".

Erweiterungsscreenshots

screenshot

Click dictionary-Erweiterungs-CRX-Datei herunterladen

Laden Sie Click dictionary-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Click dictionary Click dictionary
ID edeopnindailmgjakdinjklkakmhlmpg
Offizielle URL https://chromewebstore.google.com/detail/click-dictionary/edeopnindailmgjakdinjklkakmhlmpg
Beschreibung Double click on words to see their definition
Dateigröße 33.22 KB
Installationsanzahl 1,570
Aktuelle Version 1.4.3
Letztes Update 2023-01-31
Veröffentlichungsdatum 2017-10-31
Bewertung 4.09/5 Insgesamt 11 Bewertungen
Entwickler newdev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}