tmrrwnystrdy

ku:


version:

otsune:

pinto:

appbank:
tumbladdictとiView機能比較 - わたしのインターネット



subscribeで http://wedata.net/databases/iview/items.json を入れるとみかこさんとか4uとかメロンピーチとかdrawrとかイワタブログとかfashionsnap.comとかいろいろみられます。詳しくはいろんなサイトをiviewで見られるようになりましたで!

ku:

version:

otsune:

pinto:

appbank:

tumbladdictとiView機能比較 - わたしのインターネット

subscribeで http://wedata.net/databases/iview/items.json を入れるとみかこさんとか4uとかメロンピーチとかdrawrとかイワタブログとかfashionsnap.comとかいろいろみられます。詳しくはいろんなサイトをiviewで見られるようになりましたで!

キーボードでlike

sampler:

suyhnc:

otsune:

dara-j:

playontumblr.user.jsのshow/hide切替が激しく便利だったので、

  addShortcutkey({
    key: "l",
    description: "tumblr.like",
    command: function() {
      try { execute( "tumblr.like", execute("current-node")); } catch(e) { }
    }});

  addCommand({
    name: "tumblr.like",
    command: function(stdin) {
      try {
        if(!stdin.length) stdin = execute("current-node");
        var count = $X('.//input[contains(concat(" ",@class," "), " like_button ")]', stdin[0]);
        for(var n = 0; n < count.length; n++) {
          if(!count[n].clientWidth) continue;
          count[n].click();
          return stdin;
        }
      } catch(e) {}
      return stdin;
    }});

なんてコードを追加して、「l」キーでlike/unlike切替できるようにしてみた。j→j→j→(ぬこ発見)→l→…でかなり幸せ。

Changeset 32869 – CodeRepos::Share – Tracにてcommitしました。
インストールはplay on tumblr - Wescriptで。

All tumblr users should use Firefox with GreaseMonkey.

vhudy6tx4dik9ol:

shanti:

Useful tools summary for Safari

and install below scripts.

How to use. (Move to dashboard or other tumblog)

screencast at YouTube - ReblogCommand

  • j, k key press - Down,Up
  • t key - Reblog
  • do multiple reblogs at a time
    • p key press - Pin
    • : key press and Minibuffer will appear at the bottom of browser.
    • type “pinned-or-current-link | reblog | clear-pin” and Enter key. - Reblog

実際に使うときにはピンをたてておいてm-X(Windowsならalt+x、MacならOption+x)から

pinned-or-current-link | reblog | clear-pin

とすればReblogできます。これだとReblogされる順番が時系列と逆になるので気になる人は

pinned-or-current-link | reverse | reblog | clear-pin

最初にコマンドを打ち込んだら実行せずにCtrl+cでこれらのコマンドに名前を付けちゃいましょう。Reblogとかつけておけば今後はながったらしく打ち込む必要はありません。ちなみに僕はReblogだとReverseとかぶってtab補完するのにrebまで打たないといけないのでrrって名前にしてます。

via 2007-11-12 - Muibrog (最新情報に対応させる為、少し改訂させていただきました)

Tombloo.xpi

It’s really cool. pls check it out. And I want to add Tombloo to this list.

Tombloo is the easiest tool to post web stuff to your tumblr. You only need to right click on the stuff and choose “share - ***” menu from the context menu. Then the post will be uploaded. and it’s done!

If you have interest to tombloo, please click following link and install tombloo.

I think tombloo is ten times faster than tumblr’s bookmarklet. It deserves to restart firefox once at least. :)

* If you want to edit your post, click “share - ***” with press down ctrl key. Then a new tab will open and you can edit the post as same as tumblr’s bookmarklet.

Tombloo-related links

blockquote fix

Dashboard blockquote fix CSS, and change ‘.page_info’ color.
Write this code in Firefox “userContent.css” file. (Firefox Help: 設定ファイルの編集)

@-moz-document domain("www.tumblr.com") {
ol#posts li blockquote {
margin: 0 !important;
}
.autopagerize_page_info, .autopagerize_link {
color: #fff !important;
}
}

via

And “followers” tools

Link

Other tools

Thanks otsune, retlet, jinon.

(2009-03-06 revision [mark *])

{PostNotes} - This will render the post’s notes (including reblogs and likes) on their permalink pages.

Theme designers: Notes are now available in tumblelogs | Tumblr Staff

We’re about to start rolling out a bunch of features focused on interaction between tumblelog authors and their readers.

「私たちは、tumblelogの作者と読者とのインタラクションに焦点を当てたたくさんの機能を発表し始めたところです」ということで、Notes関連のカスタマイズHTMLテーマ用タグが追加されている。

  • {block:PostNotes} {/block:PostNotes} - permalinkページに、この投稿がnotesを持っていれば出力される。
  • {PostNotes} - この投稿のnotesの標準的なHTML出力。permalinkページにのみ出力される。
  • {block:NoteCount} {/block:NoteCount} - この投稿がnotesを持っていれば出力される。
  • {NoteCount} - この投稿のnotes数。
  • {NoteCountWithLabel} - ラベル付きのこの投稿のnotes数。

一覧ページにはnotesの数だけ、個別ページにはnotesのリストを表示しようと思うと、こんな感じかな。CSS部分はNotesのExamplesのままで、HTML部分({block:Posts}の中)だけちょっといじってみた。

<html>
<head>
<style type="text/css">
ol.notes {
padding: 0px;
margin: 25px 0px;
list-style-type: none;
border-bottom: solid 1px #ccc;
}

ol.notes li.note {
border-top: solid 1px #ccc;
padding: 10px;
}

ol.notes li.note img.avatar {
vertical-align: -4px;
margin-right: 10px;
width: 16px;
height: 16px;
}

ol.notes li.note span.action {
font-weight: bold;
}

ol.notes li.note .answer_content {
font-weight: normal;
}

ol.notes li.note blockquote {
border-color: #eee;
padding: 4px 10px;
margin: 10px 0px 0px 25px;
}

ol.notes li.note blockquote a {
text-decoration: none;
}
<style>
</head>
<body>
{block:Posts}
...

<p class="permalink">
Posted at <a href="{Permalink}">{24HourWithZero}:{Minutes}</a>
{block:NoteCount} (<a href="{Permalink}#notes">{NoteCountWithLabel}</a>){/block:NoteCount}
</p>
{block:PostNotes}
<!-- このブロックはpermlink(個別)ページでしか表示されない -->
<h4 class="notes"><a name="notes">Reblogged & Liked ({NoteCountWithLabel})</a></h4>
{PostNotes}
{/block:PostNotes}
{/block:Posts}
</body>
</html>

しかしインタラクションに焦点を当てるなら、リブログしたサイトじゃなくリブログしたポストにリンクしてほしいな。notesの一覧。

(via tsukamoto)

(via otsune)

(via syoichi)