We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 948ea2c commit b23cc32Copy full SHA for b23cc32
1 file changed
Zhihu-Beautification.user.js
@@ -1,6 +1,6 @@
1
// ==UserScript==
2
// @name 知乎美化
3
-// @version 1.4.6
+// @version 1.4.7
4
// @author X.I.U
5
// @description 宽屏显示、暗黑模式(4种)、暗黑模式跟随浏览器、屏蔽首页活动广告、隐藏文章开头大图、调整图片最大高度、向下翻时自动隐藏顶栏
6
// @match *://www.zhihu.com/*
@@ -433,6 +433,7 @@ html {filter: brightness(65%) sepia(30%) !important; background-image: url();}
433
}
434
435
if (location.pathname === '/' || location.pathname === '/hot' || location.pathname === '/follow') style += style_index;
436
+ if (menu_value('menu_darkModeType') === 1 && location.pathname.indexOf('/special/') > -1) style += style_darkMode_2 + 'video {filter: invert(1) !important;}';
437
438
// 宽屏显示
439
if (menu_value('menu_widescreenDisplayIndex')) style += style_widescreenDisplayIndex;
0 commit comments