GC Larger Dice-A-Roo Buttons

Easier to click Dice-A-Roo buttons so you can chill and idly tap a nice large target. Applies to the 'Roll Again' when playing, 'Press Me' when game over, and 'Lets Play!' when at the main menu buttons.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         GC Larger Dice-A-Roo Buttons
// @version      0.1
// @description  Easier to click Dice-A-Roo buttons so you can chill and idly tap a nice large target. Applies to the 'Roll Again' when playing, 'Press Me' when game over, and 'Lets Play!' when at the main menu buttons.
// @author       Twiggies
// @match        https://www.grundos.cafe/games/play_dicearoo/
// @match        https://www.grundos.cafe/games/dicearoo/
// @icon         https://i.imgur.com/zGP1hIH.png
// @namespace    https://github.com/13ulbasaur/
// @license      MIT
// ==/UserScript==

const rollAgainButton = document.querySelector('#dice-a-roo > input, input[value="Roll Again"], input[value="Press Me"], input[value="Lets Play!"]');


if (rollAgainButton) {
    rollAgainButton. style.height = "250px";
}