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 word highlight | |
// @namespace http://ss-o.net/ | |
// @description keywords highlight for Google Search and All | |
// @include http://* | |
// @include https://* | |
// ==/UserScript== | |
// スクロール中のみハイライトするように変えた。 | |
//console.time("highlight"); | |
(function word_hightlight(loaded){ |
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 mylist IncSearch | |
// @namespace http://www.enjoyxstudy.com/ | |
// @description Hatena Bookmark incremental search. | |
// @include http://www.enjoyxstudy.com/greasemonkey/incsearch | |
// @include http://web.zgo.jp/test/inc/* | |
// @version 1.1 | |
// ==/UserScript== | |
// | |
// ver 0.1 2006/05/30 |
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 hatebu IncSearch | |
// @namespace http://www.enjoyxstudy.com/ | |
// @description Hatena Bookmark incremental search. | |
// @include http://www.enjoyxstudy.com/greasemonkey/incsearch/?mode=hatebu&id=* | |
// @include http://web.zgo.jp/test/inc/* | |
// @version 1.1 | |
// ==/UserScript== | |
// | |
// ver 0.1 2006/05/30 |
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 hatebu IncSearch | |
// @namespace http://www.enjoyxstudy.com/ | |
// @description Hatena Bookmark incremental search. | |
// @include http://www.enjoyxstudy.com/greasemonkey/incsearch/?mode=hatebu&id=* | |
// @include http://web.zgo.jp/test/inc/* | |
// @version 1.1 | |
// ==/UserScript== | |
// | |
// ver 0.1 2006/05/30 |
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 http://web.zgo.jp/ | |
// @description Shows results from Twitter on Google search pages | |
// @include http://www.google.*/search?*q=* | |
// @include http://www.google.*/* | |
// @date 2009-03-20 | |
// @version 1.0 | |
// ==/UserScript== | |
// original Twitter Search Results on Google for Greasemonkey [ http://userscripts.org/scripts/show/43451 ] |
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:(function(){if(document.getSelection){var%20sel=document.getSelection();}else{var%20sel=document.selection.createRange().text}sel=sel.replace("@","");window.open("http://twitter.com/"+encodeURIComponent(sel),"_blank");})(); | |
//選択してるユーザー名のTwitterページに飛ぶブックマークレット | |
//多分@含んでも大丈夫。 | |
// テスト→ @azu_re | |
javascript:(function(){if(document.getSelection){ | |
var sel = document.getSelection(); | |
}else{ | |
var sel = document.selection.createRange().text | |
} | |
sel = sel.replace("@",""); |
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
//v1.2 0037 LT | |
// ==UserScript== | |
// @name Pretty Better Twitter | |
// @namespace http://t-trace.blogspot.com/ | |
// @description Expand conversation chains and twitPic.com thumbnails. | |
// @include https://twitter.com/* | |
// @include http://twitter.com/* | |
// ==/UserScript== | |
// UPDATE INFO http://t_trace.wed.macserver.jp/pbtweet.html | |
// for firefox by azu |
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
var nodeTag = $x('id("navSubnav")//td[@class="navSubnavCell"]/a[starts-with(text(),"ジャンル")]')[0] | |
if(nodeTag.getAttributeNode('href').value.match(/node=([^&\"]+)/)){ | |
var genreID = RegExp.$1; | |
copy(genreID);//クリップボード | |
} | |
//firebug コンソール |
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
//Greased Lightbox | |
//pixiv | |
{ | |
name : 'pixiv', | |
includeRegExp : /^http:\/\/www\.pixiv\.net/i, | |
linkRegExp : /member_illust\.php\?mode=medium&illust_id=\d+/i, | |
findImageRegExp : /(.+pixiv\.net\/img\/[^\/]+\/[^\/]+)_[ms]\.(jpe?g|gif|png)/i, | |
replaceString : '$1.$2', | |
showFunction : function(event) { greasedLightbox.showFrom(event, 'pixiv'); return false; } | |
}, |
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 delicious niconico thumbnail | |
// @namespace http://web.zgo.jp/ | |
// @description deliciousでニコニコ動画のリンクにはサムネイルを表示 | |
// @include http://delicious.com/* | |
// ==/UserScript== | |
(function(){ | |
function addThumbnail(doc){ | |
var a = doc.getElementsByTagName("a"); | |
for(var i = 0; i < a.length; ++i){ |