Youtube Prevent Subtitle Auto-Translation

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

  1. // ==UserScript==
  2. // @name Youtube Prevent Subtitle Auto-Translation
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-09-18
  5. // @description Prevent caption auto translation into the previous language you had captions generate in. Simply resets the caption language in local storage.
  6. // @author iwersi
  7. // @match *://*.youtube.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
  9. // @grant none
  10. // @run-at document-start
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. localStorage.removeItem('yt-player-caption-sticky-language');
  18. })();