超俺専用。
機能:
・Video詳細表示/非表示とmitterに登録するのリンク(もどき)が表示される。
・Video詳細が消える。
・でもたまに作者コメント見たくなるから、リンククリックすると見れるようになる
・でも、中の人はキーボードジャンキーなので、OキーでOpen/Closeするようにすでに改造済
・ついでなので、mitterのブックマークレット起動するようにもした
・mキーでmitterブックマークレットを呼び出すようにしてる
・リンククリックでも行けるよっ!
・これ作ったので、mitterのブックマークレットを削除した(何
・mitterへの登録が死ぬほど早くなった。1秒でpostどころか0.5秒でPostできる。
・mitterツールバー?なんですか、それ?
確認していないけど、Firefoxでも動くんじゃないかな?
需要? 何それ?
機能:
・Video詳細表示/非表示とmitterに登録するのリンク(もどき)が表示される。
・Video詳細が消える。
・でもたまに作者コメント見たくなるから、リンククリックすると見れるようになる
・でも、中の人はキーボードジャンキーなので、OキーでOpen/Closeするようにすでに改造済
・ついでなので、mitterのブックマークレット起動するようにもした
・mキーでmitterブックマークレットを呼び出すようにしてる
・リンククリックでも行けるよっ!
・これ作ったので、mitterのブックマークレットを削除した(何
・mitterへの登録が死ぬほど早くなった。1秒でpostどころか0.5秒でPostできる。
・mitterツールバー?なんですか、それ?
確認していないけど、Firefoxでも動くんじゃないかな?
需要? 何それ?
// ==UserScript==
// @name nico description
// @namespace http://looxu.blogspot.com/
// @include http://www.nicovideo.jp/watch/*
// @author Arc Cosine
// @version 1.0
// ==/UserScript==
(function(){
/** simple version of $X
* $X(exp);
* $X(exp, context);
* @source http://gist.github.com/3242.txt
*/
var $X = function (exp, context) {
context || (context = document);
var expr = (context.ownerDocument || context).createExpression(exp, function (prefix) {
return document.createNSResolver(context.documentElement || context).lookupNamespaceURI(prefix) ||
context.namespaceURI || document.documentElement.namespaceURI || "";
});
var result = expr.evaluate(context, XPathResult.ANY_TYPE, null);
switch (result.resultType) {
case XPathResult.STRING_TYPE : return result.stringValue;
case XPathResult.NUMBER_TYPE : return result.numberValue;
case XPathResult.BOOLEAN_TYPE: return result.booleanValue;
case XPathResult.UNORDERED_NODE_ITERATOR_TYPE:
// not ensure the order.
var ret = [], i = null;
while (i = result.iterateNext()) ret.push(i);
return ret;
}
return null;
}
var load_event = function(){
description_clear();
var iDiv = document.createElement('span');
iDiv.id = 'view_video_description';
iDiv.innerText = 'Video詳細';
iDiv.style.color = '#1259C7';
iDiv.style.textDecoration = 'underline';
iDiv.style.marginRight = '5px';
var p = '//p[@class="TXT12"]/a';
var pos = $X(p)[0];
pos.parentNode.insertBefore( iDiv, pos);
iDiv.addEventListener( 'click', description_clear, false );
var mDiv = document.createElement('span');
mDiv.id= 'mitter_button';
mDiv.innerText = 'mitter';
mDiv.style.color = '#1259C7';
mDiv.style.textDecoration = 'underline';
mDiv.style.marginRight = '5px';
pos.parentNode.insertBefore( mDiv, pos );
mDiv.addEventListener( 'click', popup, false );
}
var popup = function() {
var normalized_url = location.href;
var url = "http://mitter.jp/bookmarklet/popup", v = "0";
url += '?v=' + v + '&url=' + encodeURIComponent(normalized_url) + '&title=' + encodeURIComponent(document.title);
var options = 'toolbar=0,resizable=1,scrollbars=1,status=1,width=450,height=430';
var open_func = function() {
var w = window.open(url, 'mitter', options);
if (!w) {
alert('Popup window from Mitter seems to be blocked. Please allow popup window to post on Mitter.');
} else {
w.focus();
}
};
open_func();
}
var description_clear = function(){
var p = '//div[@class="video_description"]';
var desc = $X(p)[0];
var disp = desc.style.display;
if( disp == 'none' ){
desc.style.display = 'block';
}else{
desc.style.display = 'none';
}
}
var key_event = function(e){
var handler = {
'o' : description_clear,
'm' : popup
};
var t = e.target;
if( t.nodeType == 1 ){
var tn = t.tagName.toLowerCase();
if( tn == 'input' || tn == 'textarea' ){
return;
}
var pressKey = String.fromCharCode(e.which);
if( typeof handler[pressKey] == "function" ){
e.preventDefault(); //Stop Default Event
handler[pressKey].apply();
}
}
}
document.addEventListener( 'keypress', key_event, false );
load_event();
})();
コメント
コメントを投稿