Pinboard.in: Better Keyboard

Adds many popular, logical keyboard shortcuts to Pinboard.in ('?' will show them).

Pinboard.in: Better Keyboard란 무엇입니까?

Pinboard.in: Better Keyboard은(는) https://dpeck.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds many popular, logical keyboard shortcuts to Pinboard.in ('?' will show them)."입니다.

확장 프로그램 스크린샷

screenshot

Pinboard.in: Better Keyboard 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The issues causing some users to give low reviews have been resolved. Please consider updating and re-submitting a new review. Thanks! :)

* Fixed # to delete functionality. Tightened up some other things.
* Fixed an annoying bug where editing tags/bookmark would remove focus, preventing navigation.
* Fixed an issue where deleting a bookmark would cause some wonkyness.
* Fixed keyboard nav on search results page.

These are advanced keyboard shortcuts for bookmarking site http://pinboard.in/

? = Show help.

Navigation
n or ] = next bookmark/note
p or [ = previous bookmark/note
+ = add new URL
shift-n = add a new note
g then * = go to starred
g then p = go to private
g then l = leap to a new tag (comma separated)
g then w = go to written notes

Selected Bookmark/Note
e = edit bookmark
t = edit tags
s = toggle star
# = delete
x = mark as read (done)
[enter] or o = open selected
[shift-enter] = open selected in a new tab
v = open cached version
shift-v = open cached version in new tab
c (then cmd-c) = copy selected bookmark/note url

Others
h = toggle hiding of clutter (minify view)
\ = enter 'type-ahead' mode
shift-\ = enter 'filter out' mode                    

확장 프로그램 기본 정보

이름 Pinboard.in: Better Keyboard Pinboard.in: Better Keyboard
ID omdiafgajiepgkfepfoahogbjcdofele
공식 URL https://chromewebstore.google.com/detail/pinboardin-better-keyboar/omdiafgajiepgkfepfoahogbjcdofele
설명 Adds many popular, logical keyboard shortcuts to Pinboard.in ('?' will show them).
파일 크기 61.86 KB
설치 횟수 54
현재 버전 1.64
최근 업데이트 2013-11-22
출시 날짜 2013-11-22
평점 3.43/5 총 7 개의 평점
개발자 https://dpeck.net
결제 유형 free
확장 프로그램 웹 사이트 http://dpeck.net/pinboard/
도움말 페이지 URL http://dpeck.net/pinboard/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pinboard.in: Better Keyboard",
    "version": "1.64",
    "manifest_version": 2,
    "description": "Adds many popular, logical keyboard shortcuts to Pinboard.in ('?' will show them).",
    "icons": {
        "64": "icon-128.png",
        "48": "icon-48.png",
        "32": "icon-32.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/pinboard.in\/*",
        "https:\/\/pinboard.in\/*"
    ],
    "background": {
        "scripts": [
            "init.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/pinboard.in\/*",
                "https:\/\/pinboard.in\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.js",
                "start.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery.js"
    ]
}