Advertisement
Jimmie1717

UserSript: Bingo Popout Encoding

Apr 18th, 2018
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Bingo Popout
  3. // @namespace psymarth
  4. // @include http://www.speedrunslive.com/tools/bingo-popout.html*
  5. // @include http://bingo.giuocob.com/popout*
  6. // @include http://www.srlbingo.com/popout*
  7. // @include http://www.everalert.net/bingo/popout*
  8. // @include http://bingo-ocr.herokuapp.com/etc/bingo-popout*
  9. // @include http://*buzzplugg.com/bryan/vchildbingo/test/popout.html*
  10. // @include http://speedruntools.com/bingo/bingo-popout*
  11. // @include https://www.zeldacodes.org/bingo/popout*
  12. // @include http://buzzplugg.com/bryan/v9.3dev/example/popout*
  13. // @version 1
  14. // ==/UserScript==
  15. function fixGoals() {
  16. var goals = document.querySelectorAll(`td`);
  17. for (var i = 0; i < goals.length; i++) {
  18. var goal = goals[i];
  19. goal.innerHTML = decodeURI(goal.innerHTML);
  20. }
  21. }
  22. fixGoals();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement