User Tools

Site Tools


greasemonkey

Greasemonkey Scripts

Clock Poker

// ==UserScript==
// @name     Clock Poker Blind Size Enlarger
// @version  1
// @grant    none
// @run-at      document-idle
// @include https://clock.poker/tournament/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant    GM_addStyle
// ==/UserScript==
 
waitForKeyElements(".level-table", actionFunction);
 
function actionFunction (jNode) {
    //-- DO WHAT YOU WANT TO THE TARGETED ELEMENTS HERE.
  var tablecells = document.querySelectorAll('.level-table');
  tablecells.forEach(function(tablecell) {
    tablecell.style.fontSize = '60pt';
  });
 
}
greasemonkey.txt · Last modified: 2024/09/04 12:04 by admin