Translation Disabler for eBay
Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.
O que é Translation Disabler for eBay?
Translation Disabler for eBay é uma extensão do Chrome desenvolvida por Eduard Ereza, e sua principal característica é "Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Translation Disabler for eBay
Baixe arquivos de extensão Translation Disabler for eBay no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Translation Disabler for eBay |
ID | nblmoonpiilkcfcckhhdaijolankohkj |
URL Oficial | https://chromewebstore.google.com/detail/translation-disabler-for/nblmoonpiilkcfcckhhdaijolankohkj |
Descrição | Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items. |
Tamanho do Arquivo | 15.01 KB |
Contagem de Instalações | 1,059 |
Versão Atual | 1.0.3 |
Última Atualização | 2015-08-05 |
Data de Publicação | 2015-08-05 |
Classificação | 4.32/5 Total de 25 Avaliações |
Desenvolvedor | Eduard Ereza |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Ereza/TranslationDisablerForEbay |
Idiomas Suportados | 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" } ] } |