Youtube Reset CC Language

Prevent caption auto translation into the previous language you had captions generate in. Simply resets the caption language in local storage.

11.09.2024 itibariyledir. En son verisyonu görün.

// ==UserScript==
// @name         Youtube Reset CC Language
// @namespace    http://tampermonkey.net/
// @version      2024-09-10
// @description  Prevent caption auto translation into the previous language you had captions generate in. Simply resets the caption language in local storage.
// @author       iwersi
// @match        *://*.youtube.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant        none
// @run-at       document-start
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    localStorage.removeItem('yt-player-caption-sticky-language');
})();