Pinboard Bookmarklet

Google Chrome Extension for Pinboard Bookmarklet with custom shortcut support

Pinboard Bookmarklet란 무엇입니까?

Pinboard Bookmarklet은(는) https://sparanoid.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Google Chrome Extension for Pinboard Bookmarklet with custom shortcut support"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Features:

- Simple Pinboard official bookmarklet integrated, provided best compatibility for future Pinboard updates.
- Custom keyboard shortcut support

This is a fork version of original Google Chrome Extension for Pinboard by yasuyk, with the following changes:

- No context menu since I rarely use it.
- Better Extension menu appearance.

Source code: https://github.com/sparanoid/pinboard-bookmarklet                    

확장 프로그램 기본 정보

이름 Pinboard Bookmarklet Pinboard Bookmarklet
ID jhcfbdglkolekommimjcincilfkphphi
공식 URL https://chromewebstore.google.com/detail/pinboard-bookmarklet/jhcfbdglkolekommimjcincilfkphphi
설명 Google Chrome Extension for Pinboard Bookmarklet with custom shortcut support
파일 크기 29.4 KB
설치 횟수 68
현재 버전 0.1.2
최근 업데이트 2020-09-01
출시 날짜 2018-09-22
개발자 https://sparanoid.com
이메일 [email protected]
결제 유형 free
지원되는 언어 en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "0.1.2",
    "manifest_version": 2,
    "default_locale": "en",
    "minimum_chrome_version": "23",
    "homepage_url": "https:\/\/github.com\/sparanoid\/pinboard-bookmarklet",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Pinboard",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "img\/pinboard_icon_19.png",
            "38": "img\/pinboard_icon_38.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "js\/content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/pinboard.js",
            "js\/chrome\/event_listener.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "icons": {
        "16": "img\/pinboard_icon_16.png",
        "48": "img\/pinboard_icon_48.png",
        "128": "img\/pinboard_icon_128.png"
    },
    "commands": {
        "save_to_pinboard": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S"
            },
            "description": "Save to Pinboard"
        },
        "read_later": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "MacCtrl+Shift+L"
            },
            "description": "Read later"
        },
        "unread_bookmarks": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "MacCtrl+Shift+U"
            },
            "description": "Unread bookmarks"
        },
        "all_bookmarks": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "MacCtrl+Shift+A"
            },
            "description": "All bookmarks"
        }
    }
}