Pinboard Plus

A better extension for Pinboard (http://pinboard.in). Easy to know current page has been saved or not.

Τι είναι το Pinboard Plus;

Το Pinboard Plus είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Chi Zhang, και η κύρια λειτουργία του είναι "A better extension for Pinboard (http://pinboard.in). Easy to know current page has been saved or not.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Pinboard Plus

Λήψη αρχείων επέκτασης Pinboard Plus σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Pinboard Plus is a better Chrome extension for Pinboard.in.
Easy to know current page has been saved or not.

* Icon changing to show current page has been saved or not
* Add, modify and delete bookmarks from the popup window
* Same UI style with Pinboard official site
* Set private if in Incognito Mode

Contact me: @ClvrObj

----------------------------------------------------------------
Update:
2.13.0: Add AI summarizer✨: Now you can let ChatGPT summarize the page for you! Just go to the options and turn it on!
2.12.5: Bugfix.
2.12.4: Update the icons to adapt to the dark mode.
2.12.3: Improve case sensitive auto completion for tags; Increase auto suggestion list size(5 -> 7), kudos to @jorge0136.
2.12.2: Utilizing local meta keywords tags to suggest better and more relevant tags. Thanks Ventz Petkov.
2.12.1: Remove header from options page.
2.12: Better WebExtension compatibility. Thanks @hyperfekt
2.11.5: fix issue Tab auto-complete only works on second load
2.11.4: new tags can be auto-complete now
2.11.3: check if Pinboard API down
2.11.2: less notification (no notify when query post status)
2.11.1: Show notification if error(including the token expired, API down etc.) occurs
2.11: better error handling for logging in
2.10: Add option to auto-enable 'private' in Incognito Mode. @the_kenny
2.9: Tags input improvements. By @kosqx
2.8: Add option to check "read later" by default. Thanks @sublimino !
2.7: Tags suggestion small improvement.
2.6 Using Pinboard API token to login.
2.4 Add blockquote options, thanks @spl.
2.3 bugfix.
2.0 Code refactor.
1.15 Suggestions improve by @seansay and bugfix.
1.14 New indicator icon by Tamim Swaid ( @tamimat ).
1.13: New item in options: private always checked.
1.12: Automatically encloses the description in 
tags when it's populated from the window's current selection, thanks @cdzombak 1.11: You can disable bookmark auto-check in options page, thanks @statico 1.10: Fix tag autocomplete bug kudos goes to @concept47 1.9: C-n, C-p to select tags. 1.8: Bugfix. 1.7: Fix login failed issue on Chrome beta, kudos goes to @cdzombak 1.6: Bug fix. 1.5: Fixed focus at tags input when popup open. 1.4: Colored icon! 1.3: add saving state icon and bug fix. 1.2: close popup after hit submit; text selected copy to "Notes" field of popup; bug fix.

Βασικές Πληροφορίες Επέκτασης

Όνομα Pinboard Plus Pinboard Plus
ID mphdppdgoagghpmmhodmfajjlloijnbd
Επίσημο URL https://chromewebstore.google.com/detail/pinboard-plus/mphdppdgoagghpmmhodmfajjlloijnbd
Περιγραφή A better extension for Pinboard (http://pinboard.in). Easy to know current page has been saved or not.
Μέγεθος Αρχείου 198 KB
Αριθμός Εγκαταστάσεων 6,150
Τρέχουσα Έκδοση 2.13.0
Τελευταία Ενημέρωση 2023-04-01
Ημερομηνία Δημοσίευσης 2019-06-01
Αξιολόγηση 4.17/5 Συνολικά 102 Αξιολογήσεις
Προγραμματιστής Chi Zhang
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/clvrobj/Pinboard-Plus
Διεύθυνση URL της Σελίδας Βοήθειας http://pinboard-plus.zhangchi.de/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pinboard Plus",
    "version": "2.13.0",
    "description": "A better extension for Pinboard (http:\/\/pinboard.in). Easy to know current page has been saved or not.",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_title": "Pinboard Plus",
        "default_icon": "images\/icon_black_16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "scripts\/description.js",
                "scripts\/keywords_suggestions.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/appicon_16.png",
        "48": "images\/appicon_48.png",
        "128": "images\/appicon_128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+P",
                "mac": "Command+Shift+P",
                "chromeos": "Ctrl+Shift+P",
                "linux": "Ctrl+Shift+P"
            }
        }
    }
}