Translation Disabler for eBay
Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.
Qu'est-ce que Translation Disabler for eBay ?
Translation Disabler for eBay est une extension Chrome développée par Eduard Ereza, et sa fonction principale est "Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Translation Disabler for eBay
Téléchargez les fichiers d'extension Translation Disabler for eBay au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Translation Disabler for eBay |
ID | nblmoonpiilkcfcckhhdaijolankohkj |
URL Officiel | https://chromewebstore.google.com/detail/translation-disabler-for/nblmoonpiilkcfcckhhdaijolankohkj |
Description | Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items. |
Taille du Fichier | 15.01 KB |
Nombre d'Installations | 1,059 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2015-08-05 |
Date de Publication | 2015-08-05 |
Évaluation | 4.32/5 Total 25 Évaluations |
Développeur | Eduard Ereza |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Ereza/TranslationDisablerForEbay |
Langues Prises en Charge | 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" } ] } |