From 4ec5334ba8816b243c3e788066208281a4adf4fa Mon Sep 17 00:00:00 2001 From: yujinpan <1192878390@qq.com> Date: Thu, 28 Sep 2023 14:18:07 +0800 Subject: [PATCH] fix: hide video in hide-img --- scripts/hide-img.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/hide-img.js b/scripts/hide-img.js index 336c4de..93a8f47 100644 --- a/scripts/hide-img.js +++ b/scripts/hide-img.js @@ -11,6 +11,6 @@ (function () { const style = document.createElement('style'); - style.innerHTML = 'img{display:none!important;}*{background-image:none!important;}'; + style.innerHTML = 'img,video{display:none!important;}*{background-image:none!important;}'; document.head.append(style); })(); \ No newline at end of file