Dark mode

b站,知乎,v2ex 暗黑模式主题

当前为 2023-11-21 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Dark mode
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description b站,知乎,v2ex 暗黑模式主题
  6. // @author zhowiny
  7. // @match https://*.bilibili.com/*
  8. // @match https://*.zhihu.com/*
  9. // @match https://*.v2ex.com/*
  10. // @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
  11. // @grant none
  12. // @license MIT
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17. const style = document.createElement('style')
  18. style.innerText = 'html,img,video,button,svg:not(button svg),canvas {filter: invert(.9);}'
  19.  
  20. document.head.appendChild(style)
  21. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址