Translation Disabler for eBay
Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.
What is Translation Disabler for eBay?
Translation Disabler for eBay is a Chrome extension developed by Eduard Ereza, and its main feature is "Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.".
Extension Screenshots
Download Translation Disabler for eBay Extension CRX File
Download Translation Disabler for eBay extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Translation Disabler for eBay |
ID | nblmoonpiilkcfcckhhdaijolankohkj |
Official URL | 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. |
File Size | 15.01 KB |
Installation Count | 1,059 |
Current Version | 1.0.3 |
Last Updated | 2015-08-05 |
Publish Date | 2015-08-05 |
Rating | 4.32/5 Total 25 Ratings |
Developer | Eduard Ereza |
Payment Type | free |
Extension Website | https://github.com/Ereza/TranslationDisablerForEbay |
Supported Languages | 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" } ] } |