Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Bingo Popout
- // @namespace psymarth
- // @include http://www.speedrunslive.com/tools/bingo-popout.html*
- // @include http://bingo.giuocob.com/popout*
- // @include http://www.srlbingo.com/popout*
- // @include http://www.everalert.net/bingo/popout*
- // @include http://bingo-ocr.herokuapp.com/etc/bingo-popout*
- // @include http://*buzzplugg.com/bryan/vchildbingo/test/popout.html*
- // @include http://speedruntools.com/bingo/bingo-popout*
- // @include https://www.zeldacodes.org/bingo/popout*
- // @include http://buzzplugg.com/bryan/v9.3dev/example/popout*
- // @version 1
- // ==/UserScript==
- function fixGoals() {
- var goals = document.querySelectorAll(`td`);
- for (var i = 0; i < goals.length; i++) {
- var goal = goals[i];
- goal.innerHTML = decodeURI(goal.innerHTML);
- }
- }
- fixGoals();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement