Poki 游戏全屏

Maximize the poki game window

目前为 2023-12-17 提交的版本。查看 最新版本

// ==UserScript==
// @name         Poki 游戏全屏
// @namespace    https://poki.com/
// @version      1.0
// @author       sunjxf
// @description  Maximize the poki game window
// @match        https://poki.com/en/g/*
// @match        https://poki.com/zh/g/*
// @grant        window.close
// @noframes
// @license      MIT
// ==/UserScript==

(function(){
    'use strict';
var element = document.querySelector('.bpRqPb');

function makeElementFullScreen(element) {
  element.style.position = 'fixed';
  element.style.top = '0';
  element.style.left = '0';
  element.style.width = '100vw';
  element.style.height = '100vh';
  element.style.margin = '0';
  element.style.padding = '0';
  element.style.zIndex = 999;
}

makeElementFullScreen(element);
})();

QingJ © 2025

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