Skip to content

Instantly share code, notes, and snippets.

@puyo-sh
Created June 11, 2015 11:31
Show Gist options
  • Save puyo-sh/fcf522d67a937251bbc0 to your computer and use it in GitHub Desktop.
Save puyo-sh/fcf522d67a937251bbc0 to your computer and use it in GitHub Desktop.
ブラウザ三国志 2015/06/11UPDATE INFO消去
// ==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