Pinboard Keyboard Shortcut

Bookmark the current page to Pinboard via a keyboard shortcut

Pinboard Keyboard Shortcut란 무엇입니까?

Pinboard Keyboard Shortcut은(는) Bertrand Fan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bookmark the current page to Pinboard via a keyboard shortcut"입니다.

확장 프로그램 스크린샷

screenshot

Pinboard Keyboard Shortcut 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to override the default Chrome keyboard shortcut for adding a bookmark to instead bookmark the current page to Pinboard.

You may customize the keyboard shortcut by clicking "Keyboard Shortcuts" on the Chrome Extensions page (click the hamburger menu in the top left).

https://github.com/bertrandom/pinboard-keyboard-shortcut

By default, the keyboard shortcut after installation will be Alt-D. Chrome does not let the extension override the default Bookmark this Page shortcut at installation time. If you'd like to change it to Command-D (or another shortcut), go to:

chrome://extensions/shortcuts

and set it to Command-D instead of Alt-D.

Version History
-------------

v1.3
Change the default keyboard shortcut to Alt-D

v1.2
Bug fixes

v1.1
Added the ability to use the highlighted text as the description thanks to a pull request from Michael Josephson (https://github.com/mikej)

v1.0
First release                    

확장 프로그램 기본 정보

이름 Pinboard Keyboard Shortcut Pinboard Keyboard Shortcut
ID cgponlekaepfdikdebmnklhfnjlbieng
공식 URL https://chromewebstore.google.com/detail/pinboard-keyboard-shortcu/cgponlekaepfdikdebmnklhfnjlbieng
설명 Bookmark the current page to Pinboard via a keyboard shortcut
파일 크기 16.64 KB
설치 횟수 205
현재 버전 1.3
최근 업데이트 2018-06-04
출시 날짜 2018-06-03
평점 4.36/5 총 11 개의 평점
개발자 Bertrand Fan
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pinboard Keyboard Shortcut",
    "description": "Bookmark the current page to Pinboard via a keyboard shortcut",
    "version": "1.3",
    "background": {
        "scripts": [
            "bookmark.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "commands": {
        "bookmark-on-pinboard": {
            "suggested_key": {
                "default": "Alt+D"
            },
            "description": "Bookmark the current page on Pinboard"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ]
}