WordReference Translator

Chrome extension to allow quick access to www.wordreference.com.

Was ist WordReference Translator?

WordReference Translator ist eine Chrome-Erweiterung, die von spassaro entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension to allow quick access to www.wordreference.com.".

Erweiterungsscreenshots

screenshot

WordReference Translator-Erweiterungs-CRX-Datei herunterladen

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

                        Translate a word by:
    - Double clicking it and then clicking on the floating link.
    - Selecting the text to translate and using the context menu.
Support for the following languages:
    - English
    - Spanish
    - French
    - Portuguese
    - Italian
Settings page to change languages accessible from extensions list or by context menu.                    

Grundlegende Informationen zur Erweiterung

Name WordReference Translator WordReference Translator
ID cheajkjbaknihaobmnjmbphjphoahhlp
Offizielle URL https://chromewebstore.google.com/detail/wordreference-translator/cheajkjbaknihaobmnjmbphjphoahhlp
Beschreibung Chrome extension to allow quick access to www.wordreference.com.
Dateigröße 19.35 KB
Installationsanzahl 789
Aktuelle Version 1.0.5
Letztes Update 2018-02-10
Veröffentlichungsdatum 2018-02-09
Entwickler spassaro
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WordReference Translator",
    "version": "1.0.5",
    "author": "Sebasti\u00e1n Passaro",
    "description": "Chrome extension to allow quick access to www.wordreference.com.",
    "homepage_url": "https:\/\/github.com\/spassarop\/wrtranslator\/tree\/refactor\/chrome",
    "icons": {
        "16": "icons\/wr-icon-16.png",
        "48": "icons\/wr-icon-48.png",
        "128": "icons\/wr-icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "wrtranslator.js"
            ],
            "css": [
                "wrtranslator.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": "icons\/wr-icon-16.png",
        "default_title": "www.wordreference.com"
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "default_locale": "en"
}