IMDb Show Viewer

Adds IMDb Show Viewer functionality

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==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();
})();