Skip to content

Instantly share code, notes, and snippets.

View cryptiklemur's full-sized avatar

Aaron Scherer cryptiklemur

View GitHub Profile
@cryptiklemur
cryptiklemur / main.js
Created February 9, 2017 06:55 — forked from izy521/main.js
Use CTRL + Enter to send a Discord Embedified message. You'll need to provide your account token to the code, on line 3. Will be removed if you refresh. Highlighting a selection of your message will let you send only that as the embed, and the rest as a normal message.
(function start_embed_generator(window, document) {
var my_token = "-YOUR_TOKEN_HERE-";
var color_reg = /(\#.+?)(\s|$)/;
var text_bar_color = "rgb(92, 156, 199)";
window.addEventListener('keydown' , handle_event);
window.addEventListener('keyup' , revert_bar );
return !console.log("Embed generator up!");