double-touched to enter fullscreen

I AM THE WORLD

目前為 2025-03-23 提交的版本,檢視 最新版本

// ==UserScript==
// @name         double-touched to enter fullscreen
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  I AM THE WORLD
// @author       You
// @match        *://*.douyin.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=douyin.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    document.getElementById('slidelist').addEventListener('touchstart',() => {
        window.MyTimer = setTimeout(()=> { document.getElementById('slidelist').webkitRequestFullscreen();},1000);
    })
    document.getElementById('slidelist').addEventListener('touchend',() => {
        clearTimeout(window.MyTimer);
    })
    //document.getElementById('slidelist').webkitRequestFullScreen();
    // Your code here...
})();