gdict

An English word translator based on google translator by mouse hover

Was ist gdict?

gdict ist eine Chrome-Erweiterung, die von gdict entwickelt wurde, und ihr Hauptmerkmal ist "An English word translator based on google translator by mouse hover".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

gdict-Erweiterungs-CRX-Datei herunterladen

Laden Sie gdict-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

                        Popup translation by mouse hover.

gdict is the most easy-to-use translation tool for chrome: English word will be translated to selected destination language by mouse hover. 

The translation is got from Google translator. The destination languages include: Arabic, Chinese(Simplified), Chinese(Traditional), Dutch, French, German, Greek, Indonesian, Irish, Italian, Japanese, Korean, Latin, Malay, Norwegian, Polish, Portuguese, Romanian, Russian, Spanish, Swedish, Ukrainian, Vietnamese.

User can also click speaker to listen the pronunciation the word. The speech is provided by chrome embedded TTS engine.                    

Grundlegende Informationen zur Erweiterung

Name gdict gdict
ID jadfcfoidaelkpmjbngnheppkkcingnb
Offizielle URL https://chrome.google.com/webstore/detail/gdict/jadfcfoidaelkpmjbngnheppkkcingnb
Beschreibung An English word translator based on google translator by mouse hover
Dateigröße 40.56 KB
Installationsanzahl 123
Aktuelle Version 0.7
Letztes Update 2014-05-07
Veröffentlichungsdatum 2014-05-07
Bewertung 4.50/5 Insgesamt 2 Bewertungen
Entwickler gdict
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "gdict",
    "version": "0.7",
    "description": "An English word translator based on google translator by mouse hover",
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "popup.css"
            ],
            "all_frames": true,
            "js": [
                "monitor.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "back.js"
        ],
        "persistent": false
    },
    "minimum_chrome_version": "14",
    "icons": {
        "16": "images\/gdict16.png",
        "48": "images\/gdict48.png",
        "128": "images\/gdict128.png"
    },
    "permissions": [
        "storage",
        "",
        "tts"
    ]
}