您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A always visible button to open crazy games it is on the bottom left.
// ==UserScript== // @name Crazy games button // @namespace Violentmonkey Scripts // @version 1.2 // @description A always visible button to open crazy games it is on the bottom left. // @match *://*/* // @grant none // ==/UserScript== (function () { 'use strict'; const GAME_URL = 'https://www.crazygames.com/game/tunnel-rush'; // Maak knop const button = document.createElement('div'); button.innerText = '🎮'; Object.assign(button.style, { position: 'fixed', bottom: '20px', left: '20px', zIndex: '99999', backgroundColor: '#111', color: '#fff', padding: '10px 14px', borderRadius: '8px', fontSize: '14px', fontFamily: 'Arial, sans-serif', cursor: 'pointer', boxShadow: '0 2px 10px rgba(0,0,0,0.5)', userSelect: 'none', }); document.body.appendChild(button); // Klik → open popup button.addEventListener('click', () => { window.open(GAME_URL, '_blank', 'width=1000,height=700'); }); })();