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 goodbye jimmy | |
// @namespace www.dolpen.net | |
// @include http://ja.wikipedia.org/wiki/* | |
// @include http://en.wikipedia.org/wiki/* | |
// ==/UserScript== | |
(function(){ | |
var el=document.getElementById('siteNotice'); | |
if(el!=null)el.style.display='none'; | |
})(); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script type="text/javascript"> | |
<!-- | |
var Vector=function(x,y,z){this.x=x;this.y=y;this.z=z;this.v=1;}; | |
Vector.prototype.norm=function(){return Math.sqrt(this.inp(this));}; | |
Vector.prototype.inp=function(a){return a.x*this.x+a.y*this.y+a.z*this.z;}; | |
Vector.prototype.oup=function(a){ | |
return new Vector( |
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 JimmyWalesAnyware | |
// @namespace www.dolpen.net | |
// @include http://* | |
// @include https://* | |
// @exclude http://wikimediafoundation.org/* | |
// @exclude http://ja.wikipedia.org/* | |
// @exclude http://en.wikipedia.org/* | |
// @require http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.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 googlecutprev | |
// @namespace www.dolpen.net | |
// @include http://www.google.com/search* | |
// @include http://www.google.co.jp/search* | |
// @require http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js | |
// ==/UserScript== | |
(function(){$('div.vsc').each(function(){$(this).parent().empty().append($(this).clone().removeClass('vsc'));});})(); |
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 Madoka World | |
// @namespace http://www.dolpen.net/ | |
// @description 全世界イヌカレー空間 | |
// @include http://* | |
// @include https://* | |
// @require http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js | |
// ==/UserScript== | |
//font:http://tinyurl.com/MadokaRunesFont | |
(function(){ |
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 password | |
// @namespace www.dolpen.net | |
// @include http://anpi.ipc.shizuoka.ac.jp/input.cgi | |
// ==/UserScript== | |
(function(){ | |
document.getElementsByTagName('input')[1].setAttribute('type','password'); | |
})(); |
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 de-duplication | |
// @namespace http://www.dolpen.net/ | |
// @description find duplicated tweet | |
// @include http://www.sinsai.info/ushahidi/index.php/admin/messages/index/3* | |
// @include http://www.sinsai.info/ushahidi/admin/messages/index/3* | |
// @include http://manager.sinsai.info/ushahidi/admin/messages/index/3* | |
// @require http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js | |
// ==/UserScript== | |
(function(){ |
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 simplize gyazo | |
// @namespace wwww.dolpen.net | |
// @include http://gyazo.com/* | |
// @require http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js | |
// ==/UserScript== | |
(function(){ | |
$('.ads').hide(); | |
})(); |
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 HatenaStarCluster | |
// @namespace www.dolpen.net | |
// @description はてなスター爆撃 | |
// @include * | |
// @require http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js | |
// ==/UserScript== | |
(function(){ | |
var t;//ターゲット; | |
var s='.hatena-star-add-button';//セレクタ |
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 Gakujo | |
// @namespace www.dolpen.net | |
// @description 学務情報死すべし | |
// @include https://gakujo.shizuoka.ac.jp/portal/init.do?* | |
// @include https://gakujo.shizuoka.ac.jp/portal/login.do* | |
// @require http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js | |
// ==/UserScript== | |
(function(){ | |
$('input[name="loginID"]').attr('readOnly',false); |