Wiktionary Translator

Quickly look up words in wiktionary as you read

Was ist Wiktionary Translator?

Wiktionary Translator ist eine Chrome-Erweiterung, die von axolotl entwickelt wurde, und ihr Hauptmerkmal ist "Quickly look up words in wiktionary as you read".

Erweiterungsscreenshots

screenshot

Wiktionary Translator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Wiktionary Translator-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

                        Wiktionary translator is a simple and quick way to translate words on a page. 

Just select a word on your page and press Shift+Ctrl+F to open the translator popup to see the wiktionary results! You can also type words to search directly in the popup.

You can select a different language for wiktionary translator in the Options page.                    

Grundlegende Informationen zur Erweiterung

Name Wiktionary Translator Wiktionary Translator
ID ilghalkaapnhooaegoecclkebghfdpjp
Offizielle URL https://chromewebstore.google.com/detail/wiktionary-translator/ilghalkaapnhooaegoecclkebghfdpjp
Beschreibung Quickly look up words in wiktionary as you read
Dateigröße 82.76 KB
Installationsanzahl 223
Aktuelle Version 1.0.0
Letztes Update 2015-03-16
Veröffentlichungsdatum 2015-03-16
Bewertung 2.78/5 Insgesamt 9 Bewertungen
Entwickler axolotl
Zahlungsart free
Erweiterungswebsite https://github.com/Risto-Stevcev/wiktionary-translator
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wiktionary Translator",
    "description": "Quickly look up words in wiktionary as you read",
    "version": "1.0.0",
    "manifest_version": 2,
    "options_page": "options\/options.html",
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts\/selection.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        }
    }
}