mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-27 23:43:02 +05:00
clickable result url for bypass.city
This commit is contained in:
parent
6cec91c17f
commit
e26fea70c6
4 changed files with 68 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 92.8.35
|
||||
// @version 92.8.36
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -553,6 +553,8 @@
|
|||
// @match https://tonordersitye.com/s?*
|
||||
// @match https://daughablelea.com/s?*
|
||||
// @match https://linkvertise.com/*
|
||||
// @match https://bypass.city/bypass?bypass=*
|
||||
// @match https://adbypass.org/bypass?bypass=*
|
||||
// @match https://fitdynamos.com/*
|
||||
// @match https://fc-lc.xyz/*
|
||||
// @match https://www.techkhulasha.com/*
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 92.8.35
|
||||
// @version 92.8.36
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -553,6 +553,8 @@
|
|||
// @match https://tonordersitye.com/s?*
|
||||
// @match https://daughablelea.com/s?*
|
||||
// @match https://linkvertise.com/*
|
||||
// @match https://bypass.city/bypass?bypass=*
|
||||
// @match https://adbypass.org/bypass?bypass=*
|
||||
// @match https://fitdynamos.com/*
|
||||
// @match https://fc-lc.xyz/*
|
||||
// @match https://www.techkhulasha.com/*
|
||||
|
@ -1725,6 +1727,33 @@
|
|||
// ----- ------ ----------
|
||||
|
||||
|
||||
//---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);
|
||||
}
|
||||
})();
|
||||
//-------
|
||||
|
||||
|
||||
// ----- Extra bypasses -----
|
||||
(function() {
|
||||
'use strict';
|
||||
|
|
33
extra_bypasses/bypass.city.user.js
Normal file
33
extra_bypasses/bypass.city.user.js
Normal file
|
@ -0,0 +1,33 @@
|
|||
// ==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);
|
||||
}
|
||||
})();
|
||||
//-------
|
||||
|
|
@ -533,6 +533,8 @@ https://bleleadersto.com/s?*
|
|||
https://tonordersitye.com/s?*
|
||||
https://daughablelea.com/s?*
|
||||
https://linkvertise.com/*
|
||||
https://bypass.city/bypass?bypass=*
|
||||
https://adbypass.org/bypass?bypass=*
|
||||
https://fitdynamos.com/*
|
||||
https://fc-lc.xyz/*
|
||||
https://www.techkhulasha.com/*
|
||||
|
|
Loading…
Reference in a new issue