mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-27 23:43:02 +05:00
Beautify filecrypt (by IntNinja)
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/pulls/200 https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/66
This commit is contained in:
parent
5f3b4dc840
commit
8a86ceedd3
3 changed files with 8 additions and 6 deletions
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 93.1.15
|
||||
// @version 93.1.16
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 93.1.15
|
||||
// @version 93.1.16
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -2803,14 +2803,15 @@
|
|||
var obj=JSON.parse(response.response);
|
||||
//console.log(obj);
|
||||
var finalLinksDiv=document.createElement("DIV");
|
||||
finalLinksDiv.style.backgroundColor="white";
|
||||
finalLinksDiv.style.backgroundColor="rgba(0, 0, 0, 0.5)";
|
||||
finalLinksDiv.style.borderRadius="10px";
|
||||
finalLinksDiv.style.padding="1em";
|
||||
finalLinksDiv.style.marginTop="1em";
|
||||
finalLinksDiv.style.color="black";
|
||||
finalLinksDiv.style.color="#4FCA1B";
|
||||
finalLinksDiv.style.zIndex="10";
|
||||
finalLinksDiv.style.position="relative";
|
||||
finalLinksDiv.style.marginBottom="1em";
|
||||
finalLinksDiv.style.display = "inline-block";
|
||||
let a=document.createElement("SPAN");
|
||||
a.textContent="Decrypted links:";
|
||||
finalLinksDiv.appendChild(a);
|
||||
|
|
|
@ -96,14 +96,15 @@
|
|||
var obj=JSON.parse(response.response);
|
||||
//console.log(obj);
|
||||
var finalLinksDiv=document.createElement("DIV");
|
||||
finalLinksDiv.style.backgroundColor="white";
|
||||
finalLinksDiv.style.backgroundColor="rgba(0, 0, 0, 0.5)";
|
||||
finalLinksDiv.style.borderRadius="10px";
|
||||
finalLinksDiv.style.padding="1em";
|
||||
finalLinksDiv.style.marginTop="1em";
|
||||
finalLinksDiv.style.color="black";
|
||||
finalLinksDiv.style.color="#4FCA1B";
|
||||
finalLinksDiv.style.zIndex="10";
|
||||
finalLinksDiv.style.position="relative";
|
||||
finalLinksDiv.style.marginBottom="1em";
|
||||
finalLinksDiv.style.display = "inline-block";
|
||||
let a=document.createElement("SPAN");
|
||||
a.textContent="Decrypted links:";
|
||||
finalLinksDiv.appendChild(a);
|
||||
|
|
Loading…
Reference in a new issue