How to make chrome extension to be in full screen?

前端 未结 5 1573
盖世英雄少女心
盖世英雄少女心 2021-01-06 03:48

I am trying to make chrome extension to be in full screen, but the max I can do is half width. More then that it just give me a scroll bar in the bottom.. How can I make it

5条回答
  •  没有蜡笔的小新
    2021-01-06 04:30

    addEventListener("click", function() {
        var
              el = document.documentElement
            , rfs =
                   el.requestFullScreen
                || el.webkitRequestFullScreen
                || el.mozRequestFullScreen
        ;
        rfs.call(el);
    });
    

    As seen in this post

提交回复
热议问题