銀の童子日記 http://inarin.posterous.com #ginnowarashi posterous.com Tue, 22 Mar 2011 21:42:00 -0700 Mozilla Re-Mix: Firefox 4(Beta)で取り除かれたステータスバーを復活させることができるアドオン「Status-4-Evar」 http://inarin.posterous.com/mozilla-re-mix-firefox-4betastatus-4-evar http://inarin.posterous.com/mozilla-re-mix-firefox-4betastatus-4-evar
Media_httpmozillaremi_tsjgk

firefox4のステータスバーを復活させるアドオン

Permalink | Leave a comment  »

]]>
http://posterous.com/images/profile/missing-user-75.png http://posterous.com/users/he6rDcjdaOGKe inarin inarin inarin
Wed, 09 Mar 2011 07:14:00 -0800 SBMカウンタ http://inarin.posterous.com/sbm http://inarin.posterous.com/sbm

Home > Products > SBMカウンタ

SBMカウンタ

現在見ているページに対しての各ソーシャルブックマーク件数を表示するアドオンです。
下記サービスに対応しています。

  • はてなブックマーク はてなブックマーク
  • Delicious Delicious
  • livedoor クリップ livedoor クリップ
  • POOKMARK Airlines POOKMARK Airlines
  • Buzzurl Buzzurl
  • @nifty クリップ @nifty クリップ

SBMカウンタ

インストール:

SBMカウンタ Ver 0.4.5

Return to page top

必須。マウスオーバーでコメント見れるのが最高

Permalink | Leave a comment  »

]]>
http://posterous.com/images/profile/missing-user-75.png http://posterous.com/users/he6rDcjdaOGKe inarin inarin inarin
Sat, 05 Mar 2011 21:21:00 -0800 POSTORO: FW: FirefoxアドオンのShareaholicとPosterousの相性が良過ぎる - ぽすたうるす - inarin's posterous http://inarin.posterous.com/postoro-fw-firefoxshareaholicposterous-inarin http://inarin.posterous.com/postoro-fw-firefoxshareaholicposterous-inarin

さらにPosterousからBloggerに流せば最強だ。

Posted via web from ぽすたうるす

Shareaholic入れた。ぽすたらすのブックマークレットが起動する

追記。ぽすたらすのブックマークレットはNoScriptとの相性悪いなーと。むむーん

Permalink | Leave a comment  »

]]>
http://posterous.com/images/profile/missing-user-75.png http://posterous.com/users/he6rDcjdaOGKe inarin inarin inarin
Sat, 05 Mar 2011 21:09:00 -0800 Shareaholic - Share with Facebook, Google, Twitter, Email, LinkedIn and more... :: Add-ons for Firefox http://inarin.posterous.com/shareaholic-share-with-facebook-google-twitte http://inarin.posterous.com/shareaholic-share-with-facebook-google-twitte

色んなサイトへとシェアするためのアドオン。ブックマークレット詰め合わせな感じ

Permalink | Leave a comment  »

]]>
http://posterous.com/images/profile/missing-user-75.png http://posterous.com/users/he6rDcjdaOGKe inarin inarin inarin
Sat, 05 Mar 2011 21:07:00 -0800 POSTORO: FW: FirefoxアドオンのShareaholicとPosterousの相性が良過ぎる - ぽすたうるす http://inarin.posterous.com/postoro-fw-firefoxshareaholicposterous http://inarin.posterous.com/postoro-fw-firefoxshareaholicposterous

さらにPosterousからBloggerに流せば最強だ。

Posted via web from ぽすたうるす

Shareaholic入れた。ぽすたらすのブックマークレットが起動する

Permalink | Leave a comment  »

]]>
http://posterous.com/images/profile/missing-user-75.png http://posterous.com/users/he6rDcjdaOGKe inarin inarin inarin
Fri, 04 Mar 2011 02:37:00 -0800 Posterous Post :: Add-ons for Firefox http://inarin.posterous.com/posterous-post-add-ons-for-firefox http://inarin.posterous.com/posterous-post-add-ons-for-firefox

This extension lets you post all kinds of media files and text to your Posterous sites by dragging the stuff you want to post to the Posterous icon the extension adds to your statusbar or by using the menu items it also adds to the context menu of photos, text and saveable media links.

You can also further specify a posts title, body and tags if you check the option "Show dialog for adding a title & body to my posts" in the extension's settings dialog.

Posts can also be marked as private or set to be auto posted to the other services that you've set up in your Posterous account.

イメージギャラリー

firefoxのステータスバーにぽすたろすの便利なリンクを追加

Permalink | Leave a comment  »

]]>
http://posterous.com/images/profile/missing-user-75.png http://posterous.com/users/he6rDcjdaOGKe inarin inarin inarin
Thu, 03 Mar 2011 07:43:00 -0800 TomblooからRemember The Milkに登録 - zorioの日記 http://inarin.posterous.com/tomblooremember-the-milk-zorio http://inarin.posterous.com/tomblooremember-the-milk-zorio

TomblooからRemember The Milkに登録CommentsAdd Star

よく探したらRTMのヘルプに「Quick Add」ってブックマークレットがあったので、それを使わせてもらうことにした。

models.register({
        name : 'Remember The Milk',
        ICON : 'http://www.rememberthemilk.com/favicon.ico',
        POST_URL: 'http://www.rememberthemilk.com/services/ext/addtask.rtm',
        check : function(ps){
                return ps.type == 'link';
        },
        post : function(ps){
                var url = this.POST_URL;
                var today = ps.date || new Date();
                today = new Date(Math.max(today, new Date()));
                var date = today.toLocaleFormat("%Y-%m-%d");
                return request(url).addCallback(function(res){
                        if (res.responseText.indexOf('You must <a href="/login/') != -1)
                                throw new Error(getMessage('error.notLoggedin'));
                        var doc = convertToHTMLDocument(res.responseText);
                        return $x('//td/select[@id="l"]/option/@value', doc);
                }).addCallback(function(option){
                        request(url, {
                                sendContent : {
                                        't'  : ps.item, //title
                                        'd'  : date,    //date
                                        'tx' : ps.tags,  //tag
                                        'l'  : option ,//list
                                        'submitform': 'Add Task'
                                }
                        });
                });
        }
});

ちなみに、今まで何の説明もなくコードだけペタペタと貼り付けてましたが、これらのコードを

「ツール」⇒「Tombloo」⇒「Tomblooの設定」⇒「エントリ内容/他」⇒「データ/スクリプトディレクトリ

で指定したディレクトリの下のscriptというフォルダに拡張子jsにして置いておくと、Firefoxの起動時にTomblooが読み込んでくれます。

Permalink | コメント(0) | トラックバック(2) | 22:37  TomblooからRemember The Milkに登録を含むブックマーク

 TomblooからRemember The Milkに登録のブックマークコメント

tomblooの自作例

Permalink | Leave a comment  »

]]>
http://posterous.com/images/profile/missing-user-75.png http://posterous.com/users/he6rDcjdaOGKe inarin inarin inarin
Thu, 03 Mar 2011 07:42:00 -0800 Tombloo スクリプト[Chishow PRESENTS BLOG] http://inarin.posterous.com/tombloo-chishow-presents-blog http://inarin.posterous.com/tombloo-chishow-presents-blog

最近Yahoo PipesとTwitter Feedの連携がうまくいかずブクマしたものがなかなか自動投稿されない悲しい状態になってたので、Tomblooから直接ついったーへ投稿する方式に切り替えようと思う。
ただ、Tomblooのデフォルト投稿形式が気に入らないので何とかカスタマイズしたいと思ったんだけど、scriptフォルダに何か.jsファイルを置けばいろいろできるという記述までは見つけたが、その先の情報がぜんぜんみつからん。

参考資料

公式ページっぽいところもいまいちよくわからんし
結局この辺をみながら見よう見まねでコードを書いてみた。

tomblooのカスタマイズ?方法

Permalink | Leave a comment  »

]]>
http://posterous.com/images/profile/missing-user-75.png http://posterous.com/users/he6rDcjdaOGKe inarin inarin inarin