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 Copy URL in Google search | |
// @namespace http://d.hatena.ne.jp/kurumigi/ | |
// @description Enable copying URLs if logged in to Google. | |
// @include http*://www.google.tld/search* | |
// @include http*://www.google.tld/custom* | |
// @include http*://www.google.tld/cse* | |
// @version 0.2 | |
// ==/UserScript== |
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 Amazon Short URL Maker | |
// @namespace http://d.hatena.ne.jp/kurumigi/ | |
// @include http://www.amazon.tld/* | |
// @include http://amazon.tld/* | |
// ==/UserScript== | |
(function() { | |
if (document.getElementsByName('ASIN').length) { |
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 touch-up "Die Linische Katze" | |
// @namespace http://d.hatena.ne.jp/kurumigi/ | |
// @include http://homepage.mac.com/linstedt/* | |
// ==/UserScript== | |
(function(){ | |
document.body.innerHTML = document.body.innerHTML.replace(/&([AOUaou]uml)/mg,"&$1;"); | |
})(); |
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 AutoPagerize Filter for gist | |
// @namespace http://d.hatena.ne.jp/kurumigi/ | |
// @description Rewriting posted time if using "AutoPagerize". | |
// @include http://gist.github.com/* | |
// @include https://gist.github.com/* | |
// ==/UserScript== | |
(function() { | |
$ = unsafeWindow.$; |
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 Popup Alt with AutoPagerize | |
// @namespace http://d.hatena.ne.jp/kurumigi/ | |
// @description The Alt attribute is displayed same as the Title attribute. | |
// @include * | |
// ==/UserScript== | |
// This script based on "Popup Alt". | |
// (http://espion.just-size.jp/archives/05/136155838.html) | |
// Thanks to Kyosuke Takayama. |
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
// toranoana | |
{ | |
name : 'toranoana', | |
includeRegExp : /^http:\/\/www.toranoana.jp\/mailorder\/article\/\d{2}\/\d{4}\/\d{2}\/\d{2}\/\d{12}\.html$/i, | |
linkRegExp : /^javascript:popUpWindow/, | |
findImageRegExp : /^(http:\/\/img.toranoana.jp\/)(img(?:18)?\/\d{2}\/\d{4}\/\d{2}\/\d{2}\/\d{12}-\d)\.gif$/i, | |
replaceString : '$1popup_$2p.jpg', | |
showFunction : function(event) { greasedLightbox.showFrom(event, 'toranoana'); 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
// amazon | |
{ | |
name : 'amazon', | |
includeRegExp : /^http:\/\/www\.amazon\.(?:co(?:m|\.jp|\.uk)|fr|de|ca)\//i, | |
linkRegExp : /^http:\/\/www\.amazon\.(?:co(?:m|\.jp|\.uk)|fr|de|ca)\/gp\/product\/images\/(\w{10})\/.*ref=dp_(?:otherviews|image).*$/i, | |
replaceString : 'http://ec2.images-amazon.com/images/P/$1.01._SCLZZZZZZZ_.jpg', | |
showFunction : function(event) { greasedLightbox.showFrom(event, 'amazon'); return false; } | |
}, // amazon |
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 Hatena Haiku Users and Keywords Switcher | |
// @namespace http://d.hatena.ne.jp/kurumigi/ | |
// @description Can switch display of the "Users" and "Keywords" by clicking the triangle icon on left or right respectively. | |
// @include http://h.hatena.ne.jp/* | |
// @include http://h.hatena.com/* | |
// @include http://h1beta.hatena.ne.jp/* | |
// @include http://h1beta.hatena.com/* | |
// @exclude http://h.hatena.ne.jp/mobile/* | |
// @exclude http://h.hatena.com/mobile/* |
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 Search engines+SBM | |
// @namespace http://d.hatena.ne.jp/kurumigi/ | |
// @description Show SBM count in Search engines. | |
// @include http://* | |
// ==/UserScript== | |
// this script based on "Google+SBM". | |
// http://wildlifesanctuary.blog38.fc2.com/blog-entry-141.html |
OlderNewer