IMDb Show Viewer

Adds IMDb Show Viewer functionality

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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();
})();