Greasy Fork is available in English.

Madelen2KG

Browse KG from Madelen

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Madelen2KG
// @namespace    https://www.cinelounge.org/
// @version      1.01
// @description  Browse KG from Madelen
// @author       tadanobu
// @match        https://madelen.ina.fr/content/*
// @icon         https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://ina.fr&size=64
// @require      https://code.jquery.com/jquery-3.5.1.min.js
// @license MIT
// ==/UserScript==

$(document).ready(function()
{
    $(document.body).append('<div style="position:absolute;top:80px;right:95px;border:1px solid white;font-size:14px;padding:5px;"><a href="https://karagarga.in/browse.php?search=&quot;' + $(document).find("title").text().split(' |')[0] + '&quot;&search_type=torrent" target="_blank"><span style="color: #ffffff !important">KG</span></a> - <a href="https://www.imdb.com/find/?q=' + $(document).find("title").text().split(' |')[0] + '" target="_blank"><span style="color: #ffffff !important">IMDb</span></a></div>');
});