IMDb2KGUpload

Add a link to IMDb movie pages directly to auto-filled KG upload form

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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.

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

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

Advertisement:

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.

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

Advertisement:

// ==UserScript==
// @name        IMDb2KGUpload
// @namespace   KG
// @description Add a link to IMDb movie pages directly to auto-filled KG upload form
// @author      tadanobu
// @match       https://*.imdb.com/title/tt*
// @require     https://code.jquery.com/jquery-3.5.1.min.js
// @version     1.7
// @grant       none
// ==/UserScript==
window.addEventListener('load', showCL);
function showCL() {
    var movie_id = window.location.pathname.match(/\/tt(\d+)\//)[1];
    var h1s = $("h1");

    for (var i = 0; i < h1s.length; i++) {
        var h1 = h1s[i];
        var divAfterH1 = $("<div>");

        var uploadLink = $('<a href=\'https://karagarga.in/upload.php?title=Bypassed&type=1&upstep=2&imdbid=' + movie_id + '\' target="_blank" style="color:#bbb !important; text-decoration:none;">Upload to KG</a>');

        divAfterH1.append(uploadLink);
        $(h1).after(divAfterH1);
    }
}