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
javascript: (function(doc) { | |
var add = doc.addEventListener; | |
add('mouseover',overHandler,false); | |
add('mouseout',outHandler,false); | |
add('click',clickHandler,false); | |
add('keypress',keyHandler,false); | |
function removeListeners(){ | |
var rm = doc.removeEventListener; | |
rm('mouseover',overHandler,false); | |
rm('mouseout',outHandler,false); |
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 fastladder_show_fc2_images.user.js | |
// @namespace http://d.hatena.ne.jp/edvakf/ | |
// @description Make fc2 images viewable on LDR/Fastladder | |
// @include http://reader.livedoor.com/reader/ | |
// @include http://reader.livedoor.com/public/* | |
// @include http://fastladder.com/reader/ | |
// ==/UserScript== | |
(function(w,d){ |
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 Outputz for Opera | |
// @author mallowlabs (http://d.hatena.ne.jp/mallowlabs) | |
// http://outputz.com | |
// @include http://outputz.com/?from=userjs | |
// | |
// ------ Add urls to track your inputs ------ | |
// @include http://twitter.com/home | |
// @include http://d.hatena.ne.jp/*/edit | |
// ------------------------------------------- |
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 opera focus imitation | |
// @namespace | |
// @description this script imitate focus on opera by shift + cursor key | |
// @include * | |
// ==/UserScript== | |
// 問題:位置取得の効率が悪すぎる | |
// 要素が重なっていると隣の要素として判定ができない | |
// iframe 内には入れない、または出れない | |
window.addEventListener('load',function(){ |
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 keyconfig for Chrome | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @description keyconfig for google chrome | |
// @author Griever | |
// @version 1.0 | |
// ==/UserScript== | |
var func = { | |
goToParent: function(){ |
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 twitter.AutoPager | |
// @namespace http://ss-o.net/ | |
// @version 0.2 | |
// @include http://twitter.com/* | |
// @include https://twitter.com/* | |
// ==/UserScript== | |
// Thx! id:Constellation | |
(function autopager(unsafeWindow,loaded){ |
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
function init(){ | |
alert('Hello, Gist world!'); | |
} |
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
var tab = { | |
init: function(){ | |
if($('#tab01') != null){ | |
//Event is assigned only once | |
for(var i = 1; i<19; i++) { | |
(function(num){ | |
$('#tab' + ("0"+num).slice(-2)).click(function(){ | |
tab.change(num); | |
return false; | |
}); |
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
/** | |
* 簡易スライドショー | |
* | |
* nextボタンを押したときに画像を切り替える簡単な | |
* スライドショーのサンプルプログラムです。 | |
* */ | |
(function(document){ | |
// 写真を表示 | |
function showPhoto(){ |
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
(function(){ | |
var d='http://domyojikarin.com/dmjcookie/img/',as = Game.Loader.assets,r = RegExp; | |
for( var i in as ){ | |
var v = as[i], a = v.alt; | |
if( /(pe.*t).*.p/.exec(a) || /(S.*\d).p/.exec(a) ){ | |
v.src = d+(r.$1[0]=='p' ? r.$1+'Dmj':'dmj'+r.$1)+'.png'; | |
} | |
} | |
})() |
OlderNewer