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
官方網址 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"
    }
}