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."입니다.

확장 프로그램 스크린샷

screenshot

Translation Disabler for eBay 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
        }
    ]
}