From 68884dcd031edf5ee42d31befb7017b0939d998d Mon Sep 17 00:00:00 2001 From: achmizs <1874748+achmizs@users.noreply.github.com> Date: Wed, 18 Dec 2019 02:55:19 -0500 Subject: [PATCH] Disabled debugging code --- src/contentScript.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/contentScript.js b/src/contentScript.js index fce3498..e4b061a 100644 --- a/src/contentScript.js +++ b/src/contentScript.js @@ -17,7 +17,7 @@ zero exclusion matters match the URL of the current page) */ function checkForShouldKillSticky(result) { - console.log("checkForShouldKillSticky"); +// console.log("checkForShouldKillSticky"); var shouldKillSticky = false; /* If whitelist mode is active, then the matching patterns list is treated @@ -59,7 +59,7 @@ function checkForShouldKillSticky(result) { ‘sticky’ or ‘fixed’, and removes those elements. */ function killSticky(root) { - console.log("killSticky"); +// console.log("killSticky"); root = root || document.querySelector("body"); if (killStickyIfNeeded(root) == false) { root.querySelectorAll('*').forEach(element => { @@ -72,7 +72,7 @@ function killSticky(root) { } function killStickyIfNeeded(element) { - console.log("killStickyIfNeeded"); +// console.log("killStickyIfNeeded"); var position = getComputedStyle(element).position; if (position === 'fixed' || position === 'sticky') { // uBlock exception. @@ -122,7 +122,7 @@ function killStickyIfNeeded(element) { } function killStickyPseudoElement(element, before) { - console.log("killStickyPseudoElement"); +// console.log("killStickyPseudoElement"); if (!AKS.pseudoElementKillingStyleBlock) { document.querySelector("head").insertAdjacentHTML("beforeend", ""); AKS.pseudoElementKillingStyleBlock = document.querySelector("style#always-kill-sticky"); @@ -137,7 +137,7 @@ function killStickyPseudoElement(element, before) { } function incrementKilledStickiesCount() { - console.log("incrementKilledStickiesCount"); +// console.log("incrementKilledStickiesCount"); AKS.stickiesKilled++; chrome.runtime.sendMessage({ newBadgeText: "" + AKS.stickiesKilled }); } @@ -147,7 +147,7 @@ function incrementKilledStickiesCount() { the page un-scrollable. This ensures that the page remains scrollable. */ function restoreScrollability() { - console.log("restoreScrollability"); +// console.log("restoreScrollability"); document.querySelectorAll("html, body").forEach(container => { container.style.setProperty("overflow-y", "auto", "important"); }); @@ -160,7 +160,7 @@ function restoreScrollability() { necessary, killing any newly-formed stickies. */ function startConstantVigilance() { - console.log("startConstantVigilance"); +// console.log("startConstantVigilance"); var observer = new MutationObserver((mutationsList, observer) => { window.requestIdleCallback(() => { for (var mutation of mutationsList) { @@ -181,7 +181,7 @@ function startConstantVigilance() { /* Immediately kill all stickies, then commence constant vigilance. */ function beginKillingStickies() { - console.log("beginKillingStickies"); +// console.log("beginKillingStickies"); if (!window.AKS) window.AKS = { stickiesKilled: 0 }; window.requestIdleCallback(() => { @@ -195,7 +195,7 @@ function beginKillingStickies() { /******************/ function initialize() { - console.log("initialize"); +// console.log("initialize"); chrome.storage.local.get([ "matchingPatterns", "exclusionPatterns", "mode" ], (result) => { let shouldKillSticky = checkForShouldKillSticky(result); updateIcon(shouldKillSticky);