Reset Torn API Key

Resets the API key for Torn Russian Roulette Helper.

  1. // ==UserScript==
  2. // @name Reset Torn API Key
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Resets the API key for Torn Russian Roulette Helper.
  6. // @author ErrorNullTag
  7. // @match https://www.torn.com/*
  8. // @grant GM_setValue
  9. // @license GPU AGPLv3
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Reset the API key
  16. GM_setValue("API_KEY", "");
  17.  
  18. console.log("API key has been reset!");
  19.  
  20. })();