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 là gì?

Translation Disabler for eBay là một tiện ích mở rộng Chrome được phát triển bởi Eduard Ereza, và tính năng chính của nó là "Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Translation Disabler for eBay

Tải xuống các tệp mở rộng Translation Disabler for eBay dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Translation Disabler for eBay Translation Disabler for eBay
ID nblmoonpiilkcfcckhhdaijolankohkj
URL Chính Thức https://chromewebstore.google.com/detail/translation-disabler-for/nblmoonpiilkcfcckhhdaijolankohkj
Mô tả Disables automatic machine translation in eBay France, Italy and Spain sites, and shows the original titles for items.
Kích Thước Tệp 15.01 KB
Số Lần Cài Đặt 1,059
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2015-08-05
Ngày Phát Hành 2015-08-05
Đánh Giá 4.32/5 Tổng số 25 Đánh Giá
Nhà Phát Triển Eduard Ereza
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Ereza/TranslationDisablerForEbay
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}