Google Translate Keyboard Shortcuts

Keyboard Shortcuts for Google Translate Alt+A to play audio in text area and Alt+C to clear the text area

Was ist Google Translate Keyboard Shortcuts?

Google Translate Keyboard Shortcuts ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Keyboard Shortcuts for Google Translate Alt+A to play audio in text area and Alt+C to clear the text area".

Erweiterungsscreenshots

screenshot

Google Translate Keyboard Shortcuts-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Translate Keyboard Shortcuts-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

                        Provides three simple keyboard shortcuts for Google Translate to make translate and learning pronunciation more efficient.

Alt+A to hear the words in the input textbox
Alt+C to clear the input textbox
Alt+S to swap the languages                    

Grundlegende Informationen zur Erweiterung

Name Google Translate Keyboard Shortcuts Google Translate Keyboard Shortcuts
ID oppadelfinecikcbggmjjicoandngpba
Offizielle URL https://chromewebstore.google.com/detail/google-translate-keyboard/oppadelfinecikcbggmjjicoandngpba
Beschreibung Keyboard Shortcuts for Google Translate Alt+A to play audio in text area and Alt+C to clear the text area
Dateigröße 36.89 KB
Installationsanzahl 364
Aktuelle Version 1.0.2
Letztes Update 2015-01-18
Veröffentlichungsdatum 2015-01-18
Bewertung 2.50/5 Insgesamt 6 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "30",
    "name": "Google Translate Keyboard Shortcuts",
    "description": "Keyboard Shortcuts for Google Translate Alt+A to play audio in text area and Alt+C to clear the text area",
    "version": "1.0.2",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/translate.google.com\/*"
            ],
            "js": [
                "scripts\/jquery-1.11.1.min.js",
                "scripts\/translate.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Google Translate Keyboard Shortcuts"
    }
}