From 9dab96cbd8ad3c5cff8c8c3e6947cf31f1908309 Mon Sep 17 00:00:00 2001 From: Anuj Biyani <305254+anujbiyani@users.noreply.github.com> Date: Thu, 29 Jun 2023 14:10:37 -0600 Subject: [PATCH] remove load console logs these show up every time the web inspector is opened, regardless of whether or not the page is JSON --- extension/content.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/extension/content.js b/extension/content.js index cc3cddb..a8bf808 100644 --- a/extension/content.js +++ b/extension/content.js @@ -457,7 +457,6 @@ function stripJsonPrefix(text) { } function load() { - console.log('JSON Viewer load start') if (document.body && ( document.body.firstElementChild && @@ -471,7 +470,6 @@ function load() { console.log({rawData: data}) if (data) init(data) } - console.log('JSON Viewer load end') } document.addEventListener('DOMContentLoaded', load)