grantの部分// @see http://d.hatena.ne.jp/trashsuite/20090427/1240767118 // @see http://hhhie.trashsuite.org/ // 追記このしたから // @grant GM_setValue // @grant GM_getValue // @grant GM_deleteValue // @grant GM_xmlhttpRequest // @grant GM_registerMenuCommand // @grant GM_openInTab // @grant GM_addStyle // 追記このうえまで // ==/UserScript== CSSの部分addStyleの塊を下記に書き換え。 // スタイルシート設定 GM_addStyle(" \ div.body img { \ max-width : 400px; \ max-height: 400px; \ } \ div#ngid-message-box { \ position : fixed; \ z-index : 100; \ bottom : 0; \ right : 0; \ width : 200px; \ color : #FFF; \ opacity : .5; \ display : none; \ text-align : center; \ background-color: #000; \ } \ div#ngid-message-box dl { \ margin : auto; \ width : 90%; \ } \ div#ngid-message-box dt { \ width : 100px; \ float : left; \ text-align : left; \ } \ div#ngid-message-box dd { \ font-weight : bold; \ } \ "); |