Last active
February 16, 2017 14:55
-
-
Save coryshaw1/43d5cd379c47ba724eef4ef89a90ceb3 to your computer and use it in GitHub Desktop.
Autoload DubX with working repo
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 dubX | |
// @namespace https://github.com/coryshaw1/DubX-Script/ | |
// @description Autorun DubX on dubtrack.fm | |
// @author MBSURFER, CISCOG. HELP RECIEVED FROM: KRIS, SACHI AND THEDARK1337. | |
// @include https://*.dubtrack.fm/* | |
// @version 1.0 | |
// @grant none | |
// ==/UserScript== | |
$('body').prepend('<div class="cake" style=" z-index: 2147483647; color: white; position: fixed; bottom: 54px; right: 10px; background: #222; padding: 13px; -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); border-radius: 5px;">Waiting for Dubtrack...</div>'); | |
setTimeout(function(){ | |
$.getScript('https://rawgit.com/coryshaw1/DubX-Script/master/beta.js'); | |
$('.cake').remove(); | |
}, 5000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment