IMDb2KGUpload

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

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Advertisement:

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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);
    }
}