Created
May 8, 2013 07:42
-
-
Save Hi-king/5538864 to your computer and use it in GitHub Desktop.
gist x migiue
This file contains 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 gist_title | |
// @namespace gist | |
// @include http://gist.github.com/* | |
// @include https://gist.github.com/* | |
// @version 1 | |
// ==/UserScript== | |
(function(){ | |
var migiuetext = document.createElement("div"); | |
migiuetext.style.background = "transparent url(http://uni.res.nimg.jp/img/icon/icon_tv_ani.gif) no-repeat scroll left bottom"; | |
migiuetext.style.paddingLeft = "30px"; | |
migiuetext.style.float = "right"; | |
migiuetext.style.marginLeft = "25%"; | |
var migiue = document.createElement("p"); | |
migiue.style.marginBottom = "5px"; | |
migiue.style.padding = "0 10px 0 36px"; | |
migiue.style.width = "100%"; | |
migiue.style.height = "41px"; | |
migiue.style.lineHeight = "41px"; | |
migiue.style.background = "transparent url(http://uni.res.nimg.jp/img/sprite_migiue.png) no-repeat scroll left bottom"; | |
migiue.innerHTML = "この右上はドワンゴ社内じゃありません!"; | |
migiuetext.appendChild(migiue); | |
document.getElementById("header").appendChild(migiuetext); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment