如何在暗模式下使用Google Chrome浏览器预览PDF?

弗兰克·德农库特

如何在深色模式/反色下使用Google Chrome浏览器预览PDF?

默认情况下为白色:

在此处输入图片说明

瓦西夫

将此JavaScript代码粘贴到您的控制台中:

var cover = document.createElement("div");
let css = `
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    mix-blend-mode: difference;
    z-index: 1;
`
cover.setAttribute("style", css);
document.body.appendChild(cover);

特别鸣谢:https : //www.reddit.com/r/chrome/comments/e3txhi/comment/fem1cto

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章