From c65769d2172b91e3467993ea9d5a9d68c46261a3 Mon Sep 17 00:00:00 2001 From: Abhijith Vijayan <34790378+abhijithvijayan@users.noreply.github.com> Date: Thu, 23 Jul 2020 14:33:24 +0530 Subject: [PATCH] fix: remove ambigious color invert code (#45) --- source/ContentScript/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ContentScript/index.ts b/source/ContentScript/index.ts index 05f7d18..214ca4a 100644 --- a/source/ContentScript/index.ts +++ b/source/ContentScript/index.ts @@ -1,3 +1,3 @@ -document.body.style.filter = 'invert(1)'; +console.log('helloworld from content script'); export {};