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 Tumblr Dashboard Tab Open to Continue to Dig | |
// @namespace http://saitamanodoruji.tumblr.com/ | |
// @description Press "C", and you can continue to dig dsbd in new tab. | |
// @include http://www.tumblr.com/dashboard* | |
// @include http://www.tumblr.com/blog* | |
// @include http://www.tumblr.com/show* | |
// @include http://www.tumblr.com/likes* | |
// @include https://www.tumblr.com/dashboard* | |
// @include https://www.tumblr.com/blog* |
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 Open Links in Caption on Tumblr Dashboard | |
// @namespace http://saitamanodoruji.tumblr.com/ | |
// @description Press Shift + o , and links in caption will open in new tabs. This works on Quote, Photo, Link and Video post. | |
// @include http://www.tumblr.com/dashboard* | |
// @include http://www.tumblr.com/show* | |
// @include http://www.tumblr.com/blog* | |
// @include http://www.tumblr.com/tagged* | |
// @include http://www.tumblr.com/likes* | |
// @include http://www.tumblr.com/liked/by/* |
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 Staccfeed + Tombloo | |
// @namespace http://saitamanodoruji.tumblr.com/ | |
// @description register Photo - pixiv (with *Tags) command by Tombloo on Staccfeed | |
// @include http://www.pixiv.net/stacc/* | |
// @version 0.1.1.20110416 | |
// ==/UserScript== | |
// | |
// Command: Tombloo::Staccfeed | |
// |
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
// Photo - Upload from Cache して tag をつける | |
Tombloo.Service.extractors.register([ | |
{ | |
name: 'Photo - drawr', | |
ICON: 'http://drawr.net/favicon.ico', | |
check: function(ctx){ | |
return ctx.onImage && /drawr\.net/.test(ctx.host) | |
}, | |
extract: function(ctx){ |
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 drawr + Tombloo | |
// @namespace http://drawr.net/saitamanodoruji | |
// @description adds 'Tombloo::drawr' command to minibuffer, which calls 'Photo - drawr' extractor of Tombloo. | |
// @include http://drawr.net/* | |
// @author saitamanodoruji | |
// @version 0.0.10 | |
// ==/UserScript== | |
// | |
// Features |
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 Continue from the Post Reblogged | |
// @namespace http://saitamanodoruji.tumblr.com/ | |
// @description Press "Shift + B", and Back to the Dashboard where the reblogged-post on the current-node is from. | |
// @include http://www.tumblr.com/dashboard* | |
// @include http://www.tumblr.com/show/* | |
// @include http://www.tumblr.com/blog/* | |
// @include http://www.tumblr.com/likes* | |
// @include https://www.tumblr.com/dashboard* | |
// @include https://www.tumblr.com/show/* |
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 pixiv Staccfeed Tab Open to Continue to Dig | |
// @namespace http://www.pixiv.net/member.php?id=394375 | |
// @description Press "C", and you can continue to dig Staccfeed in new tab. | |
// @include http://www.pixiv.net/stacc* | |
// @author saitamanodoruji | |
// @version 0.0.1.20110610 | |
// ==/UserScript== | |
// dependent on Minibuffer and LDRize |
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() { | |
models.register({ | |
name : 'Pleeq', | |
ICON : 'http://pleeq.com/favicon.ico', | |
check : function(ps) { | |
return (/photo/).test(ps.type); | |
}, | |
post : function(ps) { | |
var url = 'http://pleeq.com/add_image/' + '?title=' + encodeURIComponent(ps.item) + '&url=' + encodeURIComponent(ps.pageUrl) + '&src=' + encodeURIComponent(ps.itemUrl); | |
var form = { |
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
// Jane Style から Tumblr に Photo を post するための JScript | |
// C:\Program Files\Jane Style\script フォルダに保存して command.dat に次の行を追加する。 | |
// tumblr - Photo=wscript "$BASEPATHscript\tumblr.Photo.js" "$LINK" "$URL" "$TITLE" "$TEXT" | |
// スレ内の画像リンクを右クリックして Tumblr - Photo でポスト。 | |
// | |
// IE で Tumblr にログインしている必要がある。 | |
// | |
// パスの通ったフォルダに | |
// wscript.exe version 5.7.0.18066 | |
// msxml6.dll version 6.20.2003.0 |
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 pixiv staccfeed illust larger | |
// @version 0.4 | |
// @author retlet | |
// @namespace http://retlet.net/ | |
// @description nya-n. | |
// @include http://www.pixiv.net/stacc/* | |
// @contributer saitamanodoruji | |
// ==/UserScript== |