mirror of
https://github.com/QuiteAFancyEmerald/Holy-Unblocker.git
synced 2025-05-17 13:30:01 -04:00
Modified ad display and cookie tracking systems.
This commit is contained in:
parent
9c124f085f
commit
3dc8e0cb9b
4 changed files with 68 additions and 98 deletions
|
@ -11,13 +11,12 @@ export { insertText, paintSource, tryReadFile };
|
|||
// stringOrFunctionToGenerateNewText);
|
||||
*/
|
||||
const insertText = (lis, str, newText) => {
|
||||
// The lis argument should be a list of strings containing placeholders.
|
||||
// This will put other relevant argument types, like a string, into a list.
|
||||
lis = [].concat(lis);
|
||||
|
||||
let position;
|
||||
// Loop through each of the placeholder strings.
|
||||
for (let placeholder of lis) {
|
||||
|
||||
// The lis argument should be a list of strings containing placeholders.
|
||||
// Ensure lis is formatted as a list, and loop through each of the
|
||||
// placeholder strings.
|
||||
for (let placeholder of [].concat(lis)) {
|
||||
// Find all matches of a placeholder string and insert new text there.
|
||||
while ((position = str.indexOf(placeholder)) >= 0)
|
||||
str = str.slice(0, position)
|
||||
|
|
|
@ -1016,7 +1016,7 @@ details[open] summary {
|
|||
height: 100%;
|
||||
background-color: var(--nord1);
|
||||
overflow: hidden;
|
||||
display: block;
|
||||
display: none;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
|
|
|
@ -4,133 +4,104 @@
|
|||
/* Settings Menu
|
||||
/* ----------------------------------------------- */
|
||||
|
||||
(function() {
|
||||
|
||||
let date = new Date();
|
||||
date.setFullYear(date.getFullYear() + 100);
|
||||
date = date.toUTCString();
|
||||
|
||||
let csel = document.getElementById("csel");
|
||||
const setCookie = (name, value) => {
|
||||
document.cookie = name + `=${encodeURIComponent(value)}; expires=${date}; SameSite=None; Secure`;
|
||||
};
|
||||
|
||||
function setCookie(name, value) {
|
||||
document.cookie = name + "=" + encodeURIComponent(value) + "; expires=" + date + "; ";
|
||||
}
|
||||
|
||||
function removeCookie(name) {
|
||||
const removeCookie = name => {
|
||||
document.cookie = name + "=; expires=Thu, 01 Jan 1970 00:00:01 GMT; ";
|
||||
}
|
||||
};
|
||||
|
||||
async function readCookie(name) {
|
||||
let cookie = document.cookie.split("; ");
|
||||
let cookies = {};
|
||||
for (let i = 0; i < cookie.length; i++) {
|
||||
let p = cookie[i].split("=");
|
||||
cookies[p[0]] = p[1];
|
||||
}
|
||||
return decodeURIComponent(cookies[name]);
|
||||
}
|
||||
const readCookie = async name => {
|
||||
for (let cookie of document.cookie.split("; "))
|
||||
if (!cookie.indexOf(name + "="))
|
||||
return decodeURIComponent(cookie.slice(name.length + 1));
|
||||
};
|
||||
|
||||
function pageTitle(value) {
|
||||
const pageTitle = value => {
|
||||
let tag = document.getElementsByTagName("title")[0] || document.createElement("title");
|
||||
tag.innerHTML = value;
|
||||
document.head.appendChild(tag);
|
||||
}
|
||||
|
||||
function pageIcon(value) {
|
||||
const pageIcon = value => {
|
||||
let tag = document.querySelector("link[rel*='icon']") || document.createElement("link");
|
||||
tag.rel = "icon";
|
||||
tag.href = value;
|
||||
document.head.appendChild(tag);
|
||||
}
|
||||
|
||||
function setTitle(value) {
|
||||
pageTitle(value);
|
||||
setCookie("HBTitle", value);
|
||||
}
|
||||
|
||||
function setIcon(value) {
|
||||
pageIcon(value);
|
||||
setCookie("HBIcon", value);
|
||||
}
|
||||
|
||||
function pageHideAds() {
|
||||
document.querySelectorAll(".ad").forEach(n => n.style.display = "none");
|
||||
(document.getElementById('advertising')||new Text()).remove();
|
||||
}
|
||||
|
||||
function pageShowAds() {
|
||||
document.querySelectorAll(".ad").forEach(n => n.style.display = "block");
|
||||
let advertising = document.createElement('style');
|
||||
advertising.id = "advertising";
|
||||
advertising.innerText = `.ad { display:block; }`;
|
||||
document.appendChild.bind(document.head || document.body || document.documentElement || document)(advertising);
|
||||
}
|
||||
|
||||
function hideAds() {
|
||||
pageHideAds();
|
||||
setCookie("HBHideAds", "true");
|
||||
}
|
||||
readCookie("HBTitle").then(s => (s != undefined) && pageTitle(s));
|
||||
readCookie("HBIcon").then(s => (s != undefined) && pageIcon(s));
|
||||
|
||||
// Ghetto Default Disable Ads
|
||||
setCookie("HBHideAds", "true");
|
||||
readCookie("HBHideAds").then(s => (s != "false") ? pageHideAds() : pageShowAds((document.getElementById("hideads") || {}).checked = 0));
|
||||
|
||||
function showAds() {
|
||||
pageShowAds();
|
||||
removeCookie("HBHideAds");
|
||||
}
|
||||
|
||||
readCookie("HBTitle").then(s => (s != "undefined") && pageTitle(s));
|
||||
readCookie("HBIcon").then(s => (s != "undefined") && pageIcon(s));
|
||||
|
||||
readCookie("HBHideAds").then(s => (s != "undefined") && (function() { pageHideAds(); (document.getElementById("hideads") || {}).checked = "true"; })());
|
||||
|
||||
if (csel) {
|
||||
csel.innerHTML =
|
||||
decodeURIComponent(atob("JTNDcCUyMGNsYXNzJTNEJTIyY3NlbHRpdGxlJTIyJTNFVGFiJTIwQ2xvYWslM0MlMkZwJTNFJTBBJTNDcCUyMGNsYXNzJTNEJTIyY3NlbGxhYmVsJTIyJTNFQ2hhbmdlJTIwdGhlJTIwdGl0bGUlM0ElM0MlMkZwJTNFJTBBJTNDZm9ybSUyMGNsYXNzJTNEJTIyY3NlbGZvcm0lMjIlMjBpZCUzRCUyMnRpdGxlZm9ybSUyMiUzRSUwQSUyMCUyMCUyMCUyMCUzQ2lucHV0JTIwdHlwZSUzRCUyMnRleHQlMjIlMjBwbGFjZWhvbGRlciUzRCUyMlRhYiUyMFRpdGxlJTIyJTIwc3BlbGxjaGVjayUzRCUyMmZhbHNlJTIyJTNFJTNDaW5wdXQlMjBjbGFzcyUzRCUyMmNzZWxidXR0b24lMjIlMjB0eXBlJTNEJTIyc3VibWl0JTIyJTIwdmFsdWUlM0QlMjJBcHBseSUyMiUzRSUwQSUzQyUyRmZvcm0lM0UlMEElM0NwJTIwY2xhc3MlM0QlMjJjc2VsbGFiZWwlMjIlM0VDaGFuZ2UlMjB0aGUlMjAlM0NhJTIwaHJlZiUzRCUyMiUyRiUzRmklMjIlM0VpY29uJTNDJTJGYSUzRSUzQSUzQyUyRnAlM0UlMEElM0Nmb3JtJTIwY2xhc3MlM0QlMjJjc2VsZm9ybSUyMiUyMGlkJTNEJTIyaWNvbmZvcm0lMjIlM0UlMEElMjAlMjAlMjAlMjAlM0NpbnB1dCUyMHR5cGUlM0QlMjJ0ZXh0JTIyJTIwcGxhY2Vob2xkZXIlM0QlMjJJY29uJTIwVVJMJTIyJTIwc3BlbGxjaGVjayUzRCUyMmZhbHNlJTIyJTNFJTNDaW5wdXQlMjBjbGFzcyUzRCUyMmNzZWxidXR0b24lMjIlMjB0eXBlJTNEJTIyc3VibWl0JTIyJTIwdmFsdWUlM0QlMjJBcHBseSUyMiUzRSUwQSUzQyUyRmZvcm0lM0UlMEElM0NpbnB1dCUyMGlkJTNEJTIyY3NlbHJlc2V0JTIyJTIwY2xhc3MlM0QlMjJjc2VsYnV0dG9uJTIyJTIwdHlwZSUzRCUyMmJ1dHRvbiUyMiUyMHZhbHVlJTNEJTIyUmVzZXQlMjIlM0UlMEElM0NpbnB1dCUyMGlkJTNEJTIyY3NlbGFiJTIyJTIwY2xhc3MlM0QlMjJjc2VsYnV0dG9uJTIyJTIwdHlwZSUzRCUyMmJ1dHRvbiUyMiUyMHZhbHVlJTNEJTIyYWJvdXQlM0FibGFuayUyMiUzRSUwQSUzQ3AlMjBjbGFzcyUzRCUyMmNzZWxsYWJlbCUyMiUzRSUwQSUyMCUyMCUyMCUyMCUzQ2lucHV0JTIwaWQlM0QlMjJoaWRlYWRzJTIyJTIwdHlwZSUzRCUyMmNoZWNrYm94JTIyJTNFJTBBJTIwJTIwJTIwJTIwJTNDc3BhbiUzRUhpZGUlMjBBZHMlM0MlMkZzcGFuJTNFJTBBJTNDJTJGcCUzRSUwQSUzQ3AlM0VBZHMlMjBoZWxwJTIwc3VwcG9ydCUyMEglMjYlMjMxNzMlM0JvJTI2JTIzMTczJTNCbHklMjBVJTI2JTIzMTczJTNCbmIlMjYlMjMxNzMlM0Jsb2NrJTI2JTIzMTczJTNCZXIhJTNDJTJGcCUzRQ=="));
|
||||
document.getElementById("titleform").addEventListener("submit", function(e) {
|
||||
if (document.getElementById('csel')) {
|
||||
document.getElementById("titleform").addEventListener("submit", e => {
|
||||
e.preventDefault();
|
||||
if (this.firstElementChild.value) {
|
||||
setTitle(this.firstElementChild.value);
|
||||
this.firstElementChild.value = "";
|
||||
e = this.firstElementChild;
|
||||
if (e.value) {
|
||||
pageTitle(e.value);
|
||||
setCookie("HBTitle", e.value);
|
||||
e.value = "";
|
||||
} else {
|
||||
alert("Please provide a title.");
|
||||
}
|
||||
}, false);
|
||||
|
||||
document.getElementById("iconform").addEventListener("submit", function(e) {
|
||||
document.getElementById("iconform").addEventListener("submit", e => {
|
||||
e.preventDefault();
|
||||
if (this.firstElementChild.value) {
|
||||
setIcon(this.firstElementChild.value);
|
||||
this.firstElementChild.value = "";
|
||||
e = this.firstElementChild;
|
||||
if (e.value) {
|
||||
pageIcon(e.value);
|
||||
setCookie("HBIcon", e.value);
|
||||
e.value = "";
|
||||
} else {
|
||||
alert("Please provide an icon URL.");
|
||||
}
|
||||
}, false);
|
||||
|
||||
document.getElementById("cselreset").addEventListener("click", function() {
|
||||
document.getElementById("cselreset").addEventListener("click", () => {
|
||||
if (confirm("Reset the title and icon to default?")) {
|
||||
removeCookie("HBTitle");
|
||||
removeCookie("HBIcon");
|
||||
pageTitle("H­o­ly Un­blo­ck­er");
|
||||
pageTitle("Holy Unblocker");
|
||||
pageIcon("assets/img/icon.png");
|
||||
}
|
||||
}, false);
|
||||
|
||||
document.getElementById("cselab").addEventListener("click", function () {
|
||||
var win = window.open()
|
||||
var url = `${window.location.href}`
|
||||
var iframe = win.document.createElement('iframe')
|
||||
iframe.style.width = "100%";
|
||||
iframe.style.height = "100%";
|
||||
iframe.style.border = "none";
|
||||
iframe.style.overflow = "hidden";
|
||||
iframe.style.margin = "0";
|
||||
iframe.style.padding = "0";
|
||||
iframe.style.position = "fixed";
|
||||
iframe.style.top = "0";
|
||||
iframe.style.bottom = "0";
|
||||
iframe.style.left = "0";
|
||||
iframe.style.right = "0";
|
||||
iframe.src = url;
|
||||
win.document.body.appendChild(iframe)
|
||||
document.getElementById("cselab").addEventListener("click", () => {
|
||||
let win = window.open();
|
||||
let iframe = win.document.createElement('iframe');
|
||||
iframe.style = "width: 100%; height: 100%; border: none; overflow: hidden; margin: 0; padding: 0; position: fixed; top: 0; left: 0";
|
||||
iframe.src = location.href;
|
||||
win.document.body.appendChild(iframe);
|
||||
});
|
||||
|
||||
document.getElementById("hideads").addEventListener("change", function(e) {
|
||||
e.target.checked ? hideAds() : showAds();
|
||||
document.getElementById("hideads").addEventListener("change", e => {
|
||||
if (e.target.checked) {
|
||||
pageHideAds();
|
||||
setCookie("HBHideAds", "true");
|
||||
} else {
|
||||
pageShowAds();
|
||||
setCookie("HBHideAds", "false");
|
||||
}
|
||||
}, false);
|
||||
}
|
||||
})();
|
|
@ -1,16 +1,16 @@
|
|||
<p class="cseltitle">Tab Cloak</p>
|
||||
<p class="csellabel">Change the title:</p>
|
||||
<form class="cselform" id="titleform">
|
||||
<input type="text" placeholder="Tab Title" spellcheck="false"><input class="cselbutton" type="submit" value="Apply">
|
||||
<p class=cseltitle>Tab Cloak</p>
|
||||
<p class=csellabel>Change the title:</p>
|
||||
<form class=cselform id=titleform>
|
||||
<input type=text placeholder=Tab Title spellcheck=false><input class=cselbutton type=submit value=Apply>
|
||||
</form>
|
||||
<p class="csellabel">Change the <a href="/?i">icon</a>:</p>
|
||||
<form class="cselform" id="iconform">
|
||||
<input type="text" placeholder="Icon URL" spellcheck="false"><input class="cselbutton" type="submit" value="Apply">
|
||||
<p class=csellabel>Change the <a href=/?i>icon</a>:</p>
|
||||
<form class=cselform id=iconform>
|
||||
<input type=text placeholder=Icon URL spellcheck=false><input class=cselbutton type=submit value=Apply>
|
||||
</form>
|
||||
<input id="cselreset" class="cselbutton" type="button" value="Reset">
|
||||
<input id="cselab" class="cselbutton" type="button" value="about:blank">
|
||||
<p class="csellabel">
|
||||
<input id="hideads" type="checkbox">
|
||||
<input id=cselreset class=cselbutton type=button value=Reset>
|
||||
<input id=cselab class=cselbutton type=button value=about:blank>
|
||||
<p class=csellabel>
|
||||
<input id=hideads type=checkbox checked>
|
||||
<span>Hide Ads</span>
|
||||
</p>
|
||||
<p>Ads are disabled forever.</p>
|
Loading…
Add table
Add a link
Reference in a new issue