Pinboard Tools

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

Pinboard Tools là gì?

Pinboard Tools là một tiện ích mở rộng Chrome được phát triển bởi mceglowski, và tính năng chính của nó là "The official chrome extension for Pinboard, the minimalist bookmarking site. Lets you save bookmarks and tab sets easily from Chrome".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pinboard Tools

Tải xuống các tệp mở rộng Pinboard Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pinboard Tools Pinboard Tools
ID dpaohcncbmkojcpcjaojcehdlnjfbjkl
URL Chính Thức https://chromewebstore.google.com/detail/pinboard-tools/dpaohcncbmkojcpcjaojcehdlnjfbjkl
Mô tả The official chrome extension for Pinboard, the minimalist bookmarking site. Lets you save bookmarks and tab sets easily from Chrome
Kích Thước Tệp 32.79 KB
Số Lần Cài Đặt 6,093
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2019-03-20
Ngày Phát Hành 2019-03-20
Đánh Giá 3.53/5 Tổng số 74 Đánh Giá
Nhà Phát Triển mceglowski
Loại Thanh Toán free
Trang Web Mở Rộng https://pinboard.in
URL Trang Trợ Giúp https://pinboard.in/support
Ngôn Ngữ Được Hỗ Trợ 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
}