Created
August 8, 2018 01:03
-
-
Save 0x263b/80b4a7d0d026b79ff60a02db2ae1dbaf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Discord Token | |
// @namespace http://tampermonkey.net/ | |
// @version 0.0.1 | |
// @description try to take over the world! | |
// @author Untitled-1#0001 | |
// @match https://discordapp.com/channels/*/* | |
// @grant none | |
// @run-at document-start | |
// @license MIT License | |
// ==/UserScript== | |
(function() { | |
"use strict"; | |
console.log("Discord Token:" + localStorage.getItem("token")); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment