ので、UserJS書いてみた。
meiryo_short.jsって感じで名前つけてください。
NYSLで配布って事で(笑)
後、ファイル保存する時はUTF-8で保存してください。
Shift-JISだとなぜか上手く動かなかった。
// ==UserScript==
// @name MeiryoでInputBoxがはみ出てうぜぇ対応
// @author Arc Cosine
// @namespace http://looxu.blogspot.com/
// @version 0.0.2
// @license NYSL
// @description Short InputBox
// @published 2008-03-01
// @modified 2008-03-01
// @include *
// ==/UserScript==
(function(){
document.addEventListener("DOMContentLoaded", function(){
var inBox = document.getElementsByTagName('input');
var url = location.href.match("hatena");
for( i=0; i<inBox.length; i++ ){
if( url == "hatena" && inBox[i].type == "text" ) { //hatenaってsizeもwidthも指定していないorz
inBox[i].style.width = "60%";
}else{
inBox[i].size /= 2;
}
}
}
, false);
})();
meiryo_short.jsって感じで名前つけてください。
NYSLで配布って事で(笑)
後、ファイル保存する時はUTF-8で保存してください。
Shift-JISだとなぜか上手く動かなかった。
// ==UserScript==
// @name MeiryoでInputBoxがはみ出てうぜぇ対応
// @author Arc Cosine
// @namespace http://looxu.blogspot.com/
// @version 0.0.2
// @license NYSL
// @description Short InputBox
// @published 2008-03-01
// @modified 2008-03-01
// @include *
// ==/UserScript==
(function(){
document.addEventListener("DOMContentLoaded", function(){
var inBox = document.getElementsByTagName('input');
var url = location.href.match("hatena");
for( i=0; i<inBox.length; i++ ){
if( url == "hatena" && inBox[i].type == "text" ) { //hatenaってsizeもwidthも指定していないorz
inBox[i].style.width = "60%";
}else{
inBox[i].size /= 2;
}
}
}
, false);
})();
コメント
コメントを投稿