Created
September 19, 2016 22:45
-
-
Save MarksCode/093490a48a2696eac18083f01c117e30 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 HomeScripts | |
// @version 0.1 | |
// @description Show popular scripts on homepage | |
// @author Capernicus | |
// @include http://tagpro-*.koalabeast.com* | |
// ==/UserScript== | |
window.onload = function(){ | |
var targetDiv = document.getElementById('player'); | |
var scriptDiv = document.createElement('div'); | |
var $scriptDiv = $(scriptDiv); | |
$scriptDiv.css({'position':'absolute','top':'0','left':'0','background-color':'#2b2b2b'}).attr('id','homeScripts').appendTo(targetDiv); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment