IMDb Show Viewer

Adds IMDb Show Viewer functionality

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         IMDb Show Viewer
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Adds IMDb Show Viewer functionality
// @author       You
// @match        https://www.imdb.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function () {
    'use strict';

    function extractShowIdFromURL() {
        var match = window.location.href.match(/\/title\/(tt\d+)\/.*/);
        return match ? match[1] : null;
    }

    function watchShow() {
        var showId = extractShowIdFromURL();

        if (showId) {
            window.open(`https://vidsrc.to/embed/tv/${showId}/`);
        } else {
            alert('Unable to extract IMDb Show ID from the URL.');
        }
    }

    function watchMovie() {
        var showId = extractShowIdFromURL();

        if (showId) {
            window.open(`https://vidsrc.to/embed/movie/${showId}`);
        } else {
            alert('Unable to extract IMDb Show ID from the URL.');
        }
    }

    // Add UI element to the IMDb webpage
    function addIMDbShowViewer() {
        var container = document.createElement('div');
        container.innerHTML = `
            <h1>IMDb Show Viewer</h1>
            <button id="watchShowButton">Watch Show</button>
            <button id="watchMovieButton">Watch Movie</button>
        `;
        document.body.prepend(container);

        document.getElementById('watchShowButton').addEventListener('click', watchShow);
        document.getElementById('watchMovieButton').addEventListener('click', watchMovie);
    }

    // Add the IMDb Show Viewer to the IMDb webpage
    addIMDbShowViewer();
})();