Greasy Fork

Strip ?language= filter from TMDB

Removes the ?language= filter from TMDB.

目前为 2023-02-01 提交的版本。查看 最新版本

// ==UserScript==
// @name        Strip ?language= filter from TMDB
// @namespace   https://www.themoviedb.org/
// @description Removes the ?language= filter from TMDB.
// @include     https://www.themoviedb.org/*
// @version     1.0
// @author      NoahBK
// @license     MIT
// @grant       none
// ==/UserScript==

(function() {
  'use strict';

  const url = window.location.href;
  const newUrl = url.split("?")[0];
  window.history.replaceState({}, document.title, newUrl);
})();