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 mata niconico miteru | |
// @namespace http://d.hatena.ne.jp/ | |
// @include http://www.nicovideo.jp/watch/* | |
// @include http://www.nicovideo.jp/tag/* | |
// @include http://www.nicovideo.jp/search/* | |
// @include http://www.nicovideo.jp/related_tag/* | |
// @include http://ch.nicovideo.jp/community/co* | |
// @include http://dic.nicovideo.jp/* | |
// @include http://live.nicovideo.jp/watch/* |
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 Mylist unwatch count | |
// @namespace http://web.zgo.jp/ | |
// @include http://www.nicovideo.jp/mylist/* | |
// ==/UserScript== | |
(function() { | |
unsafeWindow.document.watch('title', | |
function(id, before, after) { | |
updateFavicon(); | |
return after |
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 NicoVideo_mark | |
// @namespace d.hatena.ne.jp/Sore_0 | |
// @original d.hatena.ne.jp/shrkw | |
// @description Mark your favorite videos to watch after | |
// @include http://www.nicovideo.jp/* | |
// @include http://ch.nicovideo.jp/video/* | |
// @exclude http://www.nicovideo.jp/thumb* | |
// @update 2008/12/07 | |
// @version 0.3.3 |
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 follow message | |
// @namespace http://web.zgo.jp/ | |
// @include http://twitter.com/* | |
// @include https://twitter.com/* | |
// @exclude http://twitter.com/home | |
// @exclude https://twitter.com/home | |
// @description フォローボタンを押したらフォローしたことを発言する | |
// ==/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 NicoNicoPlaylist mod | |
// @namespace http://oamaxa2.u-abel.net/wordpress/ | |
// @original d.hatena.ne.jp/Sore_0 | |
// @description alterでは自動的に再生、コメント非表示、画面非表示にする。 | |
// @include http://www.nicovideo.jp/* | |
// @include http://com.nicovideo.jp/* | |
// @exclude http://www.nicovideo.jp/thumb* | |
// @version 0.2.9.3 | |
// @update 2009/01/21 |
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
録音関係抜粋> | |
【誰も知らない】wizpy【誰も使ってない】 | |
[http://gimpo.2ch.net/test/read.cgi/wm/1206280790/all] | |
885 :login:Penguin[]:2008/03/13(木) 02:26:43 ID:ssK+/6QY | |
shuffle持ってるが、職場用ボイスレコーダ&USBメモリ&MP3ぷれいやんとして買ってみた。 | |
MP3で保存できるレコーダーとしては安いような気がしたの。 | |
171 : 名無しさん@お腹いっぱい。 : sage : 2009/01/20(火) 20:19:40 (p)ID:zHgs5Ak5(4) | |
Linuxスレで書いちゃったのでこっちで改めて。 | |
Wizpyを普通のMP3プレーヤーとして個人的に評価すると「3000円にしてはかなりの出来」かな | |
ちなみに起動はロゴ入りで10秒前後 |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title>eventLiner</title> | |
<script language="JavaScript"> | |
<!-- | |
window.onload = function(){ | |
var inputTag = document.getElementById("checkButton"); | |
if (inputTag.addEventListener) { |
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 favlist++ | |
// @namespace http://web.zgo.jp/ | |
// @include http://www.nicovideo.jp/mylist/* | |
// @include http://www.nicovideo.jp/user/* | |
// @include http://www.nicovideo.jp/myvideo/* | |
// @include http://www.nicovideo.jp/my* | |
// ==/UserScript== | |
(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 Add Mylist Link | |
// @author favril | |
// @namespace http://script41self.seesaa.net/ | |
// @description ニコニコ動画のメニューバーに、mylistへのリンクを追加するスクリプトを改造してローカルに値を保持 | |
// @version 0.1.3 | |
// @include http://www.nicovideo.jp/* | |
// @require http://favril.myspace.googlepages.com/noriaki_updatechecker_uc-20080823.js | |
// ==/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
/** | |
適当な名前.ahk で保存(要AutoHotKey) | |
**/ | |
#SingleInstance | |
; (サンプル) Deleteキー長押し時に"Backspace"キーを発行 | |
InitLongKeyPress("Delete", 500, "key", "Backspace") | |
return | |