From fe6f4e1cb8444f623d8349c5e217d27f0d35e8ab Mon Sep 17 00:00:00 2001 From: Stephen Nixon <45946693+arrowtype@users.noreply.github.com> Date: Fri, 3 Oct 2025 13:10:46 -0400 Subject: [PATCH 1/3] Add ignore class used for icons on google meet --- src/popup.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/popup.ts b/src/popup.ts index 4cb593c..1e9afd4 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -27,6 +27,7 @@ const defaultBlacklist = [ ".fab", ".font-fontello", ".material-icons", + ".google-material-icons", ".DPvwYc", // google hangouts ".Mwv9k", // google hangouts ".NtU4hc" // google hangouts From 6c54bb8758cb41e23df794f6d0381f02da1e033f Mon Sep 17 00:00:00 2001 From: Stephen Nixon <45946693+arrowtype@users.noreply.github.com> Date: Fri, 3 Oct 2025 13:12:40 -0400 Subject: [PATCH 2/3] add another icon class from google meet --- src/popup.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/popup.ts b/src/popup.ts index 1e9afd4..0d63296 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -28,6 +28,7 @@ const defaultBlacklist = [ ".font-fontello", ".material-icons", ".google-material-icons", + ".google-symbols", ".DPvwYc", // google hangouts ".Mwv9k", // google hangouts ".NtU4hc" // google hangouts From 6ecffb53a3c7e8b5178089f2ac44d5f4914a4e8e Mon Sep 17 00:00:00 2001 From: Stephen Nixon <45946693+arrowtype@users.noreply.github.com> Date: Fri, 3 Oct 2025 13:13:52 -0400 Subject: [PATCH 3/3] remove no-longer-relevant ignore classes --- src/popup.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/popup.ts b/src/popup.ts index 0d63296..9afc81e 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -28,10 +28,7 @@ const defaultBlacklist = [ ".font-fontello", ".material-icons", ".google-material-icons", - ".google-symbols", - ".DPvwYc", // google hangouts - ".Mwv9k", // google hangouts - ".NtU4hc" // google hangouts + ".google-symbols" ]; const showBlacklist: HTMLButtonElement = document.querySelector("#showBlacklist");