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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}