Pinboard Tools

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

Was ist Pinboard Tools?

Pinboard Tools ist eine Chrome-Erweiterung, die von mceglowski entwickelt wurde, und ihr Hauptmerkmal ist "The official chrome extension for Pinboard, the minimalist bookmarking site. Lets you save bookmarks and tab sets easily from Chrome".

Erweiterungsscreenshots

screenshot
screenshot

Pinboard Tools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pinboard Tools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Pinboard Tools Pinboard Tools
ID dpaohcncbmkojcpcjaojcehdlnjfbjkl
Offizielle URL https://chromewebstore.google.com/detail/pinboard-tools/dpaohcncbmkojcpcjaojcehdlnjfbjkl
Beschreibung The official chrome extension for Pinboard, the minimalist bookmarking site. Lets you save bookmarks and tab sets easily from Chrome
Dateigröße 32.79 KB
Installationsanzahl 6,093
Aktuelle Version 1.1.1
Letztes Update 2019-03-20
Veröffentlichungsdatum 2019-03-20
Bewertung 3.53/5 Insgesamt 74 Bewertungen
Entwickler mceglowski
Zahlungsart free
Erweiterungswebsite https://pinboard.in
Hilfeseite URL https://pinboard.in/support
Unterstützte Sprachen 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
}