YouTube Anti Translate

A small extension to disable YT video titles autotranslation.

What is YouTube Anti Translate?

YouTube Anti Translate is a Chrome extension developed by Ivan Baksheev, and its main feature is "A small extension to disable YT video titles autotranslation.".

Extension Screenshots

screenshot

Download YouTube Anti Translate Extension CRX File

Download YouTube Anti Translate extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        YouTube titles translation is very good for beginners but when you know the language enough to understand meaning of title it becomes mildly infuriating. Also you can't disable this function, it can be only disabled by changing YouTube main country.

GitHub page: https://github.com/zpix1/yt-anti-translate

____

Ютуб автоматически заменяет заголовки видео популярных иностранных блогеров на переведенные народными умельцами. Это иногда бывает полезно, особенно если английский в школе страдал, но когда ты немного знаешь язык такая опция становится ненужной и даже раздражающей, а отключить ее можно только сменой страны в настройках ютуба. Такое решение несет много побочных эффектов - все рекомендации и тренды станут иностранными, это очень неудобно.

YT Anti Translate - расширение, которое автоматически заменяет переведенные названия на оригинальные. Оно делает это для всех видео - текущего, рекомендованных и даже трендов/домашней страницы.

Расширение не вредоносное, в этом можно убедиться посмотрев код в гитхабе - https://github.com/zpix1/yt-anti-translate                    

Extension Basic Information

Name YouTube Anti Translate YouTube Anti Translate
ID ndpmhjnlfkgfalaieeneneenijondgag
Official URL https://chromewebstore.google.com/detail/youtube-anti-translate/ndpmhjnlfkgfalaieeneneenijondgag
Description A small extension to disable YT video titles autotranslation.
File Size 12.11 KB
Installation Count 7,441
Current Version 1.5.13
Last Updated 2024-01-09
Publish Date 2019-10-20
Rating 4.54/5 Total 112 Ratings
Developer Ivan Baksheev
Email [email protected]
Payment Type free
Extension Website https://github.com/zpix1/yt-anti-translate
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Anti Translate",
    "version": "1.5.13",
    "description": "A small extension to disable YT video titles autotranslation.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "src\/start.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/background.js"
    ],
    "browser_action": {
        "default_popup": "pages\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "48": "icon48.png"
    }
}