From 820551192e730d95744f880adc974abf990ffc48 Mon Sep 17 00:00:00 2001 From: Cathrine Vaage Date: Mon, 1 Feb 2021 14:30:37 +0100 Subject: [PATCH] Removes console.log call MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This removes the log call of `'Self: ‘ + myself`. The log call seemingly serves no purpose, and looks like it's leftover from debugging. It pollutes the console, and adds noise you don't want when actively using the console when developing web apps. --- extension/content.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/extension/content.ts b/extension/content.ts index 243a085..34a97f8 100644 --- a/extension/content.ts +++ b/extension/content.ts @@ -108,8 +108,6 @@ function init() { setInterval(updateTwitterClasses, 800); } - console.log('Self: ' + myself) - document.addEventListener('contextmenu', evt => { lastRightClickedElement = evt.target; }, true); @@ -708,4 +706,4 @@ browser.runtime.onMessage.addListener