Created
June 11, 2015 11:31
-
-
Save puyo-sh/fcf522d67a937251bbc0 to your computer and use it in GitHub Desktop.
ブラウザ三国志 2015/06/11UPDATE INFO消去
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 3gokushi-DisappearINFO | |
// @namespace https://github.com/puyo-sh/bro3 | |
// @description ブラウザ三国志 INFO消去 | |
// @include http://*.3gokushi.jp/* | |
// @version 1.0 | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js | |
// ==/UserScript== | |
// 2015.06.11 ver1.0 とりあえず作成 | |
(function ($){ | |
actionDisappear = function(){ | |
j$("div#info,div#mapbox + div").css({ | |
'cssText': 'display:none !important;' | |
}); | |
} | |
// Run | |
actionDisappear(); | |
})(jQuery); | |
jQuery.noConflict(); | |
j$ = jQuery; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment