Transformania Time No Escape

Deletes the struggle and slip free buttons for player items!

  1. // ==UserScript==
  2. // @name Transformania Time No Escape
  3. // @namespace http://steamcommunity.com/id/siggo/
  4. // @version 0.1
  5. // @description Deletes the struggle and slip free buttons for player items!
  6. // @author Prios
  7. // @match https://www.transformaniatime.com/
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. var $slipFree = $( 'a:contains("Attempt to slip free from your owner")' ).first();
  16.  
  17. if ( $slipFree.length === 0 ) { return }
  18.  
  19. var $struggleOut = $( 'a:contains("Fight your transformation and attempt to return to an animate form!")' ).first();
  20.  
  21. $slipFree.remove();
  22. $struggleOut.remove();
  23.  
  24. })();