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 play on tumblr | |
// @namespace tag:[email protected],2008-04-03:/coderepos.org | |
// @description play current image or video on tumblr dashboard with 'ENTER' key. open notes with 'h' key. like it with 'l' key. if won't work, pray on tumblr! | |
// @include http://www.tumblr.com/dashboard* | |
// @include http://www.tumblr.com/show/* | |
// @include http://www.tumblr.com/tumblelog/* | |
// @include http://www.tumblr.com/tagged/* | |
// ==/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
function $N(name, attr, childs) { | |
var ret = document.createElement(name); | |
for (var k in attr) if (attr.hasOwnProperty(k)) { | |
var v = attr[k]; | |
if (k == "class") ret.className = v; | |
else ret.setAttribute(k, v); | |
} | |
switch(typeof childs){ | |
case "string": | |
ret.appendChild(document.createTextNode(childs)); |
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 twitter embed image x | |
// @namespace http://twitter.com/taizooo/ | |
// @include http://twitter.com/* | |
// @include https://twitter.com/* | |
// @require https://gist.github.com/198443.txt | |
// ==/UserScript== | |
// ref: twitter embed image https://gist.github.com/635006 | |
var SITEINFO = [ |
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 Insert <ins></ins> as pressing Ctrl+D | |
// @namespace http://lowreal.net/ | |
// @include http://*.g.hatena.ne.jp/* | |
// @include https://*.g.hatena.ne.jp/* | |
// ==/UserScript== | |
location.href = "javascript:"+encodeURIComponent(uneval(function () { | |
document.body.addEventListener("keydown", function (e) { | |
var target = e.target; |
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 url meltykiss on twitter | |
// @namespace http://twitter.com/taizooo/ | |
// @include http://twitter.com/* | |
// @include https://twitter.com/* | |
// ==/UserScript== | |
// ref: twitter embed image https://gist.github.com/635006 | |
var urls=[ | |
'http://mzl.la/', |
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 twitter embed movapic | |
// @namespace http://twitter.com/taizooo/ | |
// @include http://twitter.com/* | |
// @include https://twitter.com/* | |
// @require https://gist.github.com/198443.txt | |
// ==/UserScript== | |
// ref: twitter embed image https://gist.github.com/635006 | |
// merge to "twitter embed instgram" https://gist.github.com/667600 |
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 play on tumblr | |
// @namespace tag:[email protected],2008-04-03:/coderepos.org | |
// @description play current image or video on tumblr dashboard with 'ENTER' key. open notes with 'h' key. like it with 'l' key. if won't work, pray on tumblr! | |
// @include http://www.tumblr.com/dashboard* | |
// @include http://www.tumblr.com/show/* | |
// @include http://www.tumblr.com/tumblelog/* | |
// @include http://www.tumblr.com/tagged/* | |
// ==/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 AutoPagerize Filter for pook | |
// @namespace http://twitter.com/taizooo | |
// @include http://pook.jp/* | |
// ==/UserScript== | |
(function() { | |
window.addEventListener('GM_AutoPagerizeNextPageLoaded',function() { | |
location.href='javascript:(function(){init()})()'; | |
},false); |
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 twitter embed instgram | |
// @namespace http://twitter.com/taizooo/ | |
// @include http://twitter.com/* | |
// @include https://twitter.com/* | |
// @require https://gist.github.com/198443.txt | |
// ==/UserScript== | |
// ref: twitter embed image https://gist.github.com/635006 | |
// merge to "twitter embed image x" https://gist.github.com/704470 |
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: | |
'pook_all_follow.bookmark.js'; | |
(function(){ | |
if(typeof HTMLElement!='undefined'&&!HTMLElement.prototype.click){ | |
HTMLElement.prototype.click=function(){ | |
var evt = this.ownerDocument.createEvent('MouseEvents'); | |
evt.initMouseEvent('click', true, true, this.ownerDocument.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null); | |
this.dispatchEvent(evt); | |
} | |
} |