mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-27 23:43:02 +05:00
33 lines
1.5 KiB
JavaScript
33 lines
1.5 KiB
JavaScript
// ==UserScript==
|
|
// @name Bypass.city clickable result
|
|
// @match https://bypass.city/bypass?bypass=*
|
|
// @match https://adbypass.org/bypass?bypass=*
|
|
// @run-at document-start
|
|
// ==/UserScript==
|
|
|
|
//---Bypass.city clickable result----
|
|
(function() {
|
|
'use strict';
|
|
if (/^https:\/\/(bypass\.city|adbypass\.org)\/bypass\?bypass=.*$/.test(window.location.href)) {
|
|
function checkForResolvedUrl() {
|
|
const xpath = '/html/body/div[1]/main/div/main/div[1]/div/div[2]/div/p';
|
|
const pElement = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
|
|
if (pElement && pElement.innerText.includes('The resolved url is: ')) {
|
|
const resolvedUrl = pElement.innerText.split('The resolved url is: ')[1];
|
|
if (resolvedUrl && !resolvedUrl.endsWith('...')) {
|
|
const clickableLink = document.createElement('a');
|
|
clickableLink.href = `https://${resolvedUrl}`;
|
|
clickableLink.innerText = `The resolved url is: ${resolvedUrl}`;
|
|
clickableLink.style.color = '#3366CC';
|
|
clickableLink.style.display = 'block';
|
|
pElement.innerHTML = ''; // Clear the original text
|
|
pElement.appendChild(clickableLink);
|
|
}
|
|
clearInterval(intervalId);
|
|
}
|
|
}
|
|
const intervalId = setInterval(checkForResolvedUrl, 2000);
|
|
}
|
|
})();
|
|
//-------
|
|
|