Pinboard Tools

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

Apa itu Pinboard Tools?

Pinboard Tools adalah ekstensi Chrome yang dikembangkan oleh mceglowski, dan fitur utamanya adalah "The official chrome extension for Pinboard, the minimalist bookmarking site. Lets you save bookmarks and tab sets easily from Chrome".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Pinboard Tools

Unduh file ekstensi Pinboard Tools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Pinboard Tools Pinboard Tools
ID dpaohcncbmkojcpcjaojcehdlnjfbjkl
URL Resmi https://chromewebstore.google.com/detail/pinboard-tools/dpaohcncbmkojcpcjaojcehdlnjfbjkl
Deskripsi The official chrome extension for Pinboard, the minimalist bookmarking site. Lets you save bookmarks and tab sets easily from Chrome
Ukuran File 32.79 KB
Jumlah Instalasi 6,093
Versi Saat Ini 1.1.1
Terakhir Diperbarui 2019-03-20
Tanggal Publikasi 2019-03-20
Penilaian 3.53/5 Total 74 Penilaian
Pengembang mceglowski
Tipe Pembayaran free
Situs Ekstensi https://pinboard.in
URL Halaman Bantuan https://pinboard.in/support
Bahasa yang Didukung 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
}