refactor(browser-extension): drop console statements

This commit is contained in:
wanhose 2022-08-17 23:19:44 +02:00
parent 85c6315bf4
commit b06277b4d8

View File

@ -56,7 +56,6 @@ const clean = (nodes, skipMatch) => {
const targets = nodes.filter((node) => skipMatch || match(node));
targets.forEach((node) => {
console.log(node);
node.remove();
elementCount += 1;
});