Pinboard.in 'Save a Bookmark' button

A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.

Pinboard.in 'Save a Bookmark' buttonとは何ですか?

Pinboard.in 'Save a Bookmark' buttonはBoris Terzicによって開発されたChromeの拡張機能で、その主な機能は「A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Pinboard.in 'Save a Bookmark' button拡張機能のCRXファイルをダウンロード

Pinboard.in 'Save a Bookmark' button拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A very simple single purpose Pinboard ( http://pinboard.in ) extension: it adds an action button next to your address bar and when you click it the normal Pinboard  "Save a Bookmark" page (as used in the bookmarklet) will appear in a popup with the current webpage URL and title pre-filled, as well as any text you may have selected for the description field. You can modify any fields, add tags and when saving the bookmark the popup will disappear automatically.

I wrote this small plugin since every other Pinboard extension at the time was trying to do more than just allow creating a new bookmark and I wanted to have as little clicks as possible.

Requires access to all pages in order to support the "use current selection as description" feature.

Full source code of this extension is available on my Github repository: https://github.com/aggregat4/chrome-extensions/tree/master/pinboard-save-bookmark

Changelog:
1.0.6 - Small typo caused a bug that prevented the popup from showing, should be fixed.                    

拡張機能の基本情報

名前 Pinboard.in 'Save a Bookmark' button Pinboard.in 'Save a Bookmark' button
ID geojpngopndpffccbfgekncdgmgchmgh
公式URL https://chromewebstore.google.com/detail/pinboardin-save-a-bookmar/geojpngopndpffccbfgekncdgmgchmgh
説明 A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.
ファイルサイズ 6.81 KB
インストール数 198
現在のバージョン 1.0.10
最終更新日 2013-06-28
公開日 2013-06-28
評価 3.38/5 合計 8 レビュー
開発者 Boris Terzic
支払い方法 free
拡張機能のウェブサイト https://github.com/aggregat4/chrome-extensions/tree/master/pinboard-save-bookmark
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pinboard.in 'Save a Bookmark' button",
    "version": "1.0.10",
    "description": "A simple button that shows the Pinboard.in 'Save a Bookmark' page and supports bookmark descriptions based on selection.",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ],
    "icons": {
        "16": "bluepin16x16.png",
        "48": "bluepin48x48.png",
        "128": "bluepin128x128.png"
    },
    "browser_action": {
        "default_icon": "bluepin16x16.png"
    }
}