Translation Disabler for eBay
Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.
Что такое Translation Disabler for eBay?
Translation Disabler for eBay - это расширение Chrome, разработанное Eduard Ereza, и его основная функция - "Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.".
Снимки экрана расширения
Скачать файл CRX расширения Translation Disabler for eBay
Скачайте файлы расширений Translation Disabler for eBay в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Translation Disabler for eBay |
ID | nblmoonpiilkcfcckhhdaijolankohkj |
Официальный URL | https://chromewebstore.google.com/detail/translation-disabler-for/nblmoonpiilkcfcckhhdaijolankohkj |
Описание | Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items. |
Размер файла | 15.01 KB |
Количество установок | 1,059 |
Текущая Версия | 1.0.3 |
Последнее Обновление | 2015-08-05 |
Дата публикации | 2015-08-05 |
Рейтинг | 4.32/5 Всего 25 оценок |
Разработчик | Eduard Ereza |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/Ereza/TranslationDisablerForEbay |
Поддерживаемые языки | 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" } ] } |