jet_iso / PAHE.in-.li Tükçe Altyazı Aktarıcı

// ==UserScript==
// @name        PAHE.in-.li Tükçe Altyazı Aktarıcı
// @namespace   https://openuserjs.org/users/jet_iso
// @version     1.0
// @description Bir filmin PAHE sayfasına (sol üstte sabit olacak şekilde) TürkçeAltyazı'ya yönlendirecek buton ekler.

// @license     MIT
// @copyright   2023, jet_iso (https://openuserjs.org/users/jet_iso)
// @author      jet_iso
// @match     http://pahe.ph/*
// @match     https://pahe.ph/*
// @match     http://pahe.li/*
// @match     https://pahe.li/*
// ==/UserScript==


var el = document.getElementsByClassName('wrapper-outer'),
    elChild = document.createElement('div');

//pahe sayfalarında jquery yükleniyor. sorun olmaz. gerekirse değiştiririm.
var title = jQuery("a.imdbwp__link").attr("href");

var imdbid = title.substring(title.lastIndexOf('imdb.com/title/') + 15, title.lastIndexOf('/'));


elChild.innerHTML = '<a id="isoisoiso" href="http://www.turkcealtyazi.org/find.php?cat=sub&find=' + imdbid + '"> <img class="anan" id="resim" src="https://turkcealtyazi.org/images/favicon.ico" style ="position: fixed; width: 50px; height: 50px; top: 0; left: 0">';


el.item(0).appendChild(elChild);