Strip ?language= filter from TMDB

Removes the ?language= filter from TMDB.

  1. // ==UserScript==
  2. // @name Strip ?language= filter from TMDB
  3. // @namespace https://www.themoviedb.org/
  4. // @description Removes the ?language= filter from TMDB.
  5. // @include https://www.themoviedb.org/*
  6. // @version 2.0
  7. // @author NoahBK
  8. // @license MIT
  9. // @grant none
  10. // @icon https://i.imgur.com/lBxe0Df.png
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. const url = window.location.href;
  17. const newUrl = url.split("?")[0];
  18. window.history.replaceState({}, document.title, newUrl);
  19. })();