Redirect IMDB Cast links to Mobile

Replaces all the links to view the cast of an IMDB title with the mobile version of the site because the mobile version has better formatting, but redirect back to desktop for the media gallery because that one is better

// ==UserScript==
// @name         Redirect IMDB Cast links to Mobile
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Replaces all the links to view the cast of an IMDB title with the mobile version of the site because the mobile version has better formatting, but redirect back to desktop for the media gallery because that one is better
// @author       You
// @match        https://www.imdb.com/*
// @match        https://m.imdb.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=imdb.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var links = document.querySelectorAll('a[href*="fullcredits/cast"]');
    links.forEach(function(thing) {thing.href = thing.href.replace("www","m")});

    links = document.querySelectorAll('a[href*="mediaindex"]');
    links.forEach(function(thing) {thing.href = thing.href.replace("//m.","//www.")});
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址