notPlancha

hellcase daily free

May 15th, 2020
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         New Userscript
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        https://hellcase.com/en/dailyfree
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.  
  14.     var gdf = document.getElementById("btn_open_daily_free");
  15.     function reload() {
  16.         window.location.replace('https://hellcase.com/en/dailyfree');
  17.     }
  18.  
  19.     if (gdf) {
  20.         document.getElementById("btn_open_daily_free").click();
  21.     }
  22. })();
Add Comment
Please, Sign In to add comment