This file contains hidden or 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 Add Mylist Link | |
// @author favril | |
// @namespace http://script41self.seesaa.net/ | |
// @description ニコニコ動画のメニューバーに、mylistへのリンクを追加するスクリプト | |
// @version 0.1.2 | |
// @include http://www.nicovideo.jp/* | |
// @require http://favril.myspace.googlepages.com/noriaki_updatechecker_uc-20080823.js | |
// ==/UserScript== | |
This file contains hidden or 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 NicoNicoLoginSupporter | |
// @namespace http://mitc.xrea.jp/ | |
// @author miff | |
// @include http://www.nicovideo.jp/ | |
// @include http://www.nicovideo.jp/index.php | |
// @description ニコニコ動画へのログインを支援します. | |
// ==/UserScript== | |
//------------------------------------- |
This file contains hidden or 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
javascript: | |
if (window.hah){ | |
hah.removeHints(); | |
} | |
window.hah = { | |
hintKeys : new String('asdfghjkl'), | |
selector: 'a[href]:not([href^="mailto:"]), input:not([type="hidden"]), textarea, select, img[onclick], button', | |
xpath: '//a[@href]|//input[not(@type=\x22hidden\x22)]|//textarea|//select|//img[@onclick]|//button', | |
xpathMode : true, | |
hintColorLink : '#FFFF00', |
This file contains hidden or 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 Nicoranking_eve_filter | |
// @namespace http://web.zgo.jp/ | |
// @author azu | |
// @include http://www.nicovideo.jp/ranking/* | |
// @description ニコニコ動画のランキングで直前にみたランキングと比較して、被ったものを非表示にする。 | |
// ==/UserScript== | |
(function(){ | |
function getElementsByXPath(xpath, node) { | |
var node = node || document |
This file contains hidden or 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
ary_normal: 1525ms | |
ary_normal_kai: 1364ms | |
ary_normal: 1532ms | |
ary_normal_kai: 1343ms | |
ary_normal: 1523ms | |
ary_normal_kai: 1374ms | |
ary_normal: 1527ms | |
ary_normal_kai: 1398ms | |
ary_normal: 1539ms | |
ary_normal_kai: 1388ms |
This file contains hidden or 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
// 絶対値はMath.absよりシフト演算の方が早い | |
// http://actionscript.g.hatena.ne.jp/ConquestArrow/20070621/1182359767 | |
abs = function(x){ | |
return (x ^ (x >> 31)) - (x >> 31); | |
}; | |
console.time("1"); | |
for(i=0;i<100000;i++){ | |
abs(-i); | |
} |
This file contains hidden or 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 Twitter Search Results on Google | |
// @namespace markcarey | |
// @description Shows results from Twitter on Google search pages | |
// @include http://www.google.*/search?*q=* | |
// @include http://www.google.*/* | |
// @date 2009-03-02 | |
// @version 1.0+ | |
// @GM_version 0.8.20080609.0 | |
// ==/UserScript== |
This file contains hidden or 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 nicovideo Thumbinfo popup | |
// @namespace http://d.hatena.ne.jp/gifnksm/ | |
// @description Get information about nicovideo movies before going to watch page. | |
// @include * | |
// @exclude http://ext.nicovideo.jp/thumb/* | |
// @exclude http://ext.nicovideo.jp/thumb_mylist/* | |
// @exclude http://ichiba.nicovideo.jp/parts/* | |
// ==/UserScript== | |
This file contains hidden or 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
いわゆるレンタルサーバというヤツで[ http://www.abelproject.com/ ] さんの無料サーバを使わせてもらってます。 | |
機能性とかは充実してますが、管理人は学生さんなので、安定性は借りてる身ではありますが安定は約束できないかな。 | |
(安定を求めるなら素直に有料サーバを) | |
この辺は参考になるかも | |
ものすごい勢いで誰かが無料サーバを探してあげるスレ11 | |
http://pc11.2ch.net/test/read.cgi/hosting/1226192251/ | |
ブログは>WordPressで大抵の改造は既存のプラグインとかで解決する事が多いですね。 |
This file contains hidden or 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 save selection | |
// @namespace http://web.zgo.jp/ | |
// @description 選択範囲のテキストをファイルとして保存する | |
// @include main | |
// @compatibility Firefox 2.0 3.0 | |
// @Last Change: 2009-03-08 | |
// ==/UserScript== | |
var saveSelection = { |