Translation Disabler for eBay

Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.

Was ist Translation Disabler for eBay?

Translation Disabler for eBay ist eine Chrome-Erweiterung, die von Eduard Ereza entwickelt wurde, und ihr Hauptmerkmal ist "Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.".

Erweiterungsscreenshots

screenshot

Translation Disabler for eBay-Erweiterungs-CRX-Datei herunterladen

Laden Sie Translation Disabler for eBay-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 disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items instead of the translated ones. This does not apply to any other eBay sites, since they don't have machine translation enabled.

The extension has been tested with the listings, item detail and watch list pages.

If you find any bug or have any other suggestion, please let me know.

This is open-source software, feel free to improve it at: https://github.com/Ereza/TranslationDisablerForEbay                    

Grundlegende Informationen zur Erweiterung

Name Translation Disabler for eBay Translation Disabler for eBay
ID nblmoonpiilkcfcckhhdaijolankohkj
Offizielle URL https://chromewebstore.google.com/detail/translation-disabler-for/nblmoonpiilkcfcckhhdaijolankohkj
Beschreibung Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.
Dateigröße 15.01 KB
Installationsanzahl 1,059
Aktuelle Version 1.0.3
Letztes Update 2015-08-05
Veröffentlichungsdatum 2015-08-05
Bewertung 4.32/5 Insgesamt 25 Bewertungen
Entwickler Eduard Ereza
Zahlungsart free
Erweiterungswebsite https://github.com/Ereza/TranslationDisablerForEbay
Unterstützte Sprachen en,fr,ca,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_app_name__",
    "description": "__MSG_app_description__",
    "version": "1.0.3",
    "default_locale": "en",
    "permissions": [
        "*:\/\/*.ebay.es\/*",
        "*:\/\/*.ebay.fr\/*",
        "*:\/\/*.ebay.it\/*"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.ebay.es\/*",
                "*:\/\/*.ebay.fr\/*",
                "*:\/\/*.ebay.it\/*"
            ],
            "js": [
                "untranslate.js"
            ],
            "run_at": "document_end"
        }
    ]
}