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はEduard Erezaによって開発されたChromeの拡張機能で、その主な機能は「Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.」です。
拡張機能のスクリーンショット
Translation Disabler for eBay拡張機能のCRXファイルをダウンロード
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" } ] } |