Pinboard Tools

The official chrome extension for Pinboard, the minimalist bookmarking site. Lets you save bookmarks and tab sets easily from Chrome

Pinboard Tools란 무엇입니까?

Pinboard Tools은(는) mceglowski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The official chrome extension for Pinboard, the minimalist bookmarking site. Lets you save bookmarks and tab sets easily from Chrome"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Official extension for Pinboard, the beloved personal archive and bookmarking website. This is a fairly minimal extension that lets you save bookmarks and tab sets (a quick way to save browser state if you have a ton of open tabs), and provides convenience shortcuts to your Pinboard account.                    

확장 프로그램 기본 정보

이름 Pinboard Tools Pinboard Tools
ID dpaohcncbmkojcpcjaojcehdlnjfbjkl
공식 URL https://chromewebstore.google.com/detail/pinboard-tools/dpaohcncbmkojcpcjaojcehdlnjfbjkl
설명 The official chrome extension for Pinboard, the minimalist bookmarking site. Lets you save bookmarks and tab sets easily from Chrome
파일 크기 32.79 KB
설치 횟수 6,093
현재 버전 1.1.1
최근 업데이트 2019-03-20
출시 날짜 2019-03-20
평점 3.53/5 총 74 개의 평점
개발자 mceglowski
결제 유형 free
확장 프로그램 웹 사이트 https://pinboard.in
도움말 페이지 URL https://pinboard.in/support
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": "img\/pinboard16.png",
        "default_title": "Pinboard Tools",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "pinboard_content_script.js"
            ],
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        },
        {
            "js": [
                "pinboard_iframe_content_script.js"
            ],
            "matches": [
                "https:\/\/pinboard.in\/add*"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "description": "The official chrome extension for Pinboard, the minimalist bookmarking site. Lets you save bookmarks and tab sets easily from Chrome",
    "icons": {
        "128": "img\/pinboard128.png",
        "16": "img\/pinboard16.png",
        "32": "img\/pinboard32.png",
        "48": "img\/pinboard48.png"
    },
    "name": "Pinboard Tools",
    "permissions": [
        "tabs",
        ""
    ],
    "version": "1.1.1",
    "manifest_version": 2
}