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 Multiple Tag Search Tool | |
// @namespace http://endflow.net/ | |
// @description allows to search with multiple tags from tag list in NicoVideo watching page. | |
// @include http://*.nicovideo.jp/watch/* | |
// @version 0.1.2 | |
// ==/UserScript== | |
// @author Yuki KODAMA (Twitter: kuy, Skype: netkuy) | |
// @history [2009-02-02] 0.1.0 first version | |
// [2009-02-02] 0.1.1 bugfix: apply ui changes after finished editing |
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 ShowStatusSequence | |
// @namespace http://www.madin.jp/diary/?date=20081023 | |
// @description 個別 post のページを開いたとき、それを含むユーザページに移動し、文脈を把握できるようにする | |
// @include http://twitter.com/* | |
// @include https://twitter.com/* | |
// @include http://explore.twitter.com/* | |
// ==/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:%20(function(){var%20m=document.getElementsByName("page-user-screen_name")[0].content;window.open('http://twitladder.inucara.net/user/'+m,'_blank')})(); | |
//Twitladderのブックマークレット | |
//Twitter で Following の最新の発言を読む。 |
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 REPLACE_CONTENT = true; | |
var URL_LIST = [ | |
/^http:\/\/tinyurl\.com\//, | |
/^http:\/\/(?:.*?\.)?zz\.tc\/.+/ | |
]; | |
var requested = {}; | |
document.addEventListener('mouseover', | |
function(e) { | |
var elem = e.target.wrappedJSObject; |
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 nicothumbcatch.user.js | |
// @namespace http://22century.cute.bz/ | |
// @description nicovideo ranking thumbnail catcher. | |
// @include http://www.nicovideo.jp/ranking/* | |
// @exclude http://www.nicovideo.jp/ranking/*/ichiba | |
// ==/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
javascript:burl="http://www.nicovideo.jp/watch/";_p=location.href.indexOf(burl);if(_p!=-1){id=location.href.substring(burl.length);try{xmlReq=new ActiveXObject("Microsoft.XMLHTTP");}catch(e){xmlReq=new XMLHttpRequest();}xmlReq.open("GET","/ranking_graph/mylist/daily/all/"+id,false);xmlReq.send(null);if(xmlReq.status==200){_result=xmlReq.responseText.match(/\bmyvideo\/([0-9]+)/);if(_result){window.open('http://www.nicovideo.jp/myvideo/'+_result[1], '_blank');}else{msg="公開されていません";};}else{msg="取得失敗しました";}}alert(msg); | |
//動画から投稿者のmyvideoを探すブックマークレット | |
//再生ページで実行 | |
//元ネタ : http://d.hatena.ne.jp/tsukaban/20090212/p1 |
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 Launch Safari | |
// @include main | |
// @compatibility Firefox 2.0 3.0 | |
// @Last Change: 2008-04-28. | |
// ==/UserScript== | |
/* | |
* The Original Code written by zeniko | |
* http://forums.mozillazine.org/viewtopic.php?t=397735 |
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 どう書く?org - lang | |
// @namespace http://web.zgo.jp/ | |
// @description どう書く?org - langページでお題だけを表示する | |
// @include http://ja.doukaku.org/lang/* | |
// ==/UserScript== | |
var style = | |
<><![CDATA[ | |
.comment_content{ | |
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
// ==UserScript== | |
// @name Search Atok | |
// @include main | |
// @compatibility Firefox 2.0 3.0 | |
// @Last Change: 2009-03-11 | |
// ==/UserScript== | |
/* | |
* The Original Code written by zeniko | |
* http://forums.mozillazine.org/viewtopic.php?t=397735 |
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 niconico myvideo search | |
// @namespace http://web.zgo.jp/ | |
// @description 投稿動画から作者のMyvideoを探す | |
// @include http://www.nicovideo.jp/watch/* | |
// ==/UserScript== | |
(function(){ | |
const videoId = unsafeWindow.Video.id; | |
var h1 = document.getElementsByTagName('h1')[0]; | |
if(!h1) return; |