YouTube Anti Translate

A small extension to disable YT video titles autotranslation.

¿Qué es YouTube Anti Translate?

YouTube Anti Translate es una extensión de Chrome desarrollada por Ivan Baksheev, y su función principal es "A small extension to disable YT video titles autotranslation.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión YouTube Anti Translate

Descarga archivos de extensión YouTube Anti Translate en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre YouTube Anti Translate YouTube Anti Translate
ID ndpmhjnlfkgfalaieeneneenijondgag
URL Oficial https://chromewebstore.google.com/detail/youtube-anti-translate/ndpmhjnlfkgfalaieeneneenijondgag
Descripción A small extension to disable YT video titles autotranslation.
Tamaño del Archivo 12.11 KB
Cantidad de Instalaciones 7,441
Versión Actual 1.5.13
Última Actualización 2024-01-09
Fecha de Publicación 2019-10-20
Calificación 4.54/5 Total de 112 Calificaciones
Desarrollador Ivan Baksheev
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/zpix1/yt-anti-translate
Idiomas Soportados 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"
    }
}