Greasy Fork is available in English.
去除任意网站的黑白样式
当前为
仅仅 616 字节 的代码大小,运行起来如闪电一样快
向 <head> 元素添加以下 <style> 元素。再遍历每个元素,若使用了灰度滤镜,则给它的 class 属性添加 grayToColorful
<style>
.grayToColorful {
filter: grayscale(0) !important;
-webkit-filter: grayscale(0) !important;
-moz-filter: grayscale(0) !important;
-ms-filter: grayscale(0) !important;
-o-filter: grayscale(0) !important;
filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=0) !important;
}
</style>