Skip to content

Instantly share code, notes, and snippets.

@jishanshaikh4
Created April 9, 2022 23:08
Show Gist options
  • Save jishanshaikh4/e725829b7da378d94d4114db3eee80fd to your computer and use it in GitHub Desktop.
Save jishanshaikh4/e725829b7da378d94d4114db3eee80fd to your computer and use it in GitHub Desktop.
Tampermonkey script for y2mate browser extension (No Warranty)
// Tampermonkey script for y2mate extension
// Credits: Y2mate
// ABSOLUTELY NO WARRANTY, SEE THE WEBSITE --> Y2MATE
var AKoiMain = {
oXHttpReq: null,
vid: null,
oldUrl: null,
DocOnLoad: function (o) {
try {
if (null != o && null != o.body && null != o.location && ((AKoiMain.vid = AKoiMain.getVid(o)), AKoiMain.vid)) {
o.querySelector("#info-contents #info").setAttribute("style", "flex-wrap: wrap;");
var t = o.querySelector("#menu-container"),
e = o.querySelector("#y2mateconverter"),
n = AKoiMain.GetCommandButton();
null == e && (null != t ? t.parentNode.insertBefore(n, t) : (t = o.querySelector("#eow-title")).parentNode.insertBefore(n, t)), (AKoiMain.oldUrl = o.location.href), AKoiMain.checkChangeVid();
}
return !0;
} catch (o) {
console.log("Ошибка в функции Y2mate.DocOnLoad. ", o);
}
},
checkChangeVid: function () {
setTimeout(function () {
AKoiMain.oldUrl == window.location.href ? AKoiMain.checkChangeVid() : AKoiMain.WaitLoadDom(window.document);
}, 1e3);
},
WaitLoadDom: function (o) {
(AKoiMain.vid = AKoiMain.getVid(o)),
AKoiMain.vid
? null != o.querySelector("#info #menu-container")
? AKoiMain.DocOnLoad(o)
: setTimeout(function () {
AKoiMain.WaitLoadDom(o);
}, 1e3)
: AKoiMain.checkChangeVid();
},
goToY2mate: function (o) {
try {
var t = "https://y2mate.com/youtube/" + AKoiMain.vid + "/?utm_source=chrome_addon";
window.open(t, "_blank");
} catch (o) {
console.log("Ошибка в функции Y2mate.OnButtonClick. ", o);
}
},
GetCommandButton: function () {
try {
var o = document.createElement("button");
return (
(o.id = "y2mateconverter"),
(o.className = "yt-uix-tooltip"),
o.setAttribute("type", "button"),
o.setAttribute("title", "Download with y2mate.com"),
(o.innerHTML = "Download"),
o.addEventListener(
"click",
function (o) {
AKoiMain.goToY2mate(o);
},
!0
),
o.setAttribute(
"style",
"min-height:25px; position:relative; top:1px; cursor: pointer; font: 13px Arial; background: #ff003e; color: #fff; text-transform: uppercase; display: block; padding: 10px 16px; margin: 20px 5px 10px 5px; border: 1px solid #ff0068; border-radius: 2px; font-weight:bold"
),
o.setAttribute("onmouseover", "this.style.backgroundColor='#c10841'"),
o.setAttribute("onmouseout", "this.style.backgroundColor='#ff003e'"),
o
);
} catch (o) {
console.log("Ошибка в функции Y2mate.GetCommandButton. ", o);
}
},
getVid: function (o) {
var t = o.location.toString().match(/^.*((m\.)?youtu\.be\/|vi?\/|u\/\w\/|embed\/|\?vi?=|\&vi?=)([^#\&\?]*).*/);
return !(!t || !t[3]) && t[3];
},
};
AKoiMain.WaitLoadDom(window.document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment