Is there a way to style Google Chrome default PDF viewer

前端 未结 3 1262
情书的邮戳
情书的邮戳 2021-02-05 01:58

Is there a way to style google chrome default pdf view? I\'m trying to change the gray background color to white also make the scroller little bigger for mobile devices if possi

3条回答
  •  佛祖请我去吃肉
    2021-02-05 02:45

    Just paste this into your browser console.

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

提交回复
热议问题