Import Pinboard Bookmarks to Chrome

Import a set of bookmarks from the Pinboard bookmark service into the Chrome browser.

Import Pinboard Bookmarks to Chromeคืออะไร?

Import Pinboard Bookmarks to Chrome เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Grant Winney และคุณลักษณะหลักของมันคือ "Import a set of bookmarks from the Pinboard bookmark service into the Chrome browser."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Import Pinboard Bookmarks to Chrome

ดาวน์โหลดไฟล์ส่วนขยาย Import Pinboard Bookmarks to Chrome ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Using a bookmarking service like Pinboard is convenient. You always have what you need on-the-go, and you're not tied to a single browser. But for day-to-day use it's tedious to open the bookmark site and search for a URL, especially the most frequent ones over and over.

I wrote this extension because I wanted a way to generate bookmarks in Chrome using Pinboard's "tags". You specify the tags (or combinations of tags) for which you want to generate bookmarks, and they'll be added to the Bookmarks Bar.

How to Use It

When you open the extension for the first time you'll need to supply your Pinboard API Token, which is how third-party apps securely communicate with the Pinboard service on your behalf.

After your API Token is verified, you can select the tags for which you want to generate bookmarks. Selected tags will be visible in a treeview, where you can change and reorder them. The treeview has a context menu for creating folders and performing other actions, and there's a settings panel with other available options.

Once you've got the tags arranged in the treeview the way you'd like, click the "Generate Bookmarks" button. It'll lookup bookmarks matching your selected tags and add them to your Bookmarks Bar.

Requested Permissions

This extension requests the following permissions:

Bookmarks - Needed to add to (and remove from) the Bookmarks Bar
Storage - Needed to store the API Token, selected tags and other settings locally between sessions
https://api.pinboard.in - Needed in order to access the Pinboard API, including your tags and bookmarks

Need Help?

If you have questions or a problem with using the extension, I'd prefer you create an issue on GitHub.

Include as many details as possible about what you were doing at the time, what errors you got (if any), and what you expected to happen as well as what actually did happen.

What This is Not

This is not a two-way 'sync'. Bookmarks that you create from within Chrome will not be pushed to Pinboard. It's only for retrieving bookmarks from Pinboard (via tags) into Chrome's "Bookmarks Bar".

Fixes

1.0.1 - Bug fix. On some platforms the main bookmarks bar is identified as "Bookmarks bar" instead of "Bookmarks Bar". Needed to perform a case-insensitive search, instead of a case-sensitive one, when looking for the bookmarks bar.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Import Pinboard Bookmarks to Chrome Import Pinboard Bookmarks to Chrome
ID ehmckciofpffmihhfjbblcebgmepcjdm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/import-pinboard-bookmarks/ehmckciofpffmihhfjbblcebgmepcjdm
คำอธิบาย Import a set of bookmarks from the Pinboard bookmark service into the Chrome browser.
ขนาดไฟล์ 361 KB
จำนวนการติดตั้ง 40
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2019-03-08
วันที่เผยแพร่ 2019-03-08
ผู้พัฒนา Grant Winney
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/grantwinney/pinboard-bookmarks-to-chrome
URL หน้าช่วยเหลือ https://github.com/grantwinney/pinboard-bookmarks-to-chrome
ภาษาที่รองรับ en-US
manifest.json
{
    "manifest_version": 2,
    "author": "Grant Winney",
    "homepage_url": "https:\/\/github.com\/grantwinney\/pinboard-bookmarks-to-chrome",
    "name": "Import Pinboard Bookmarks to Chrome",
    "description": "Import a set of bookmarks from the Pinboard bookmark service into the Chrome browser.",
    "version": "1.0.1",
    "icons": {
        "16": "images\/pb-to-chr-16.png",
        "32": "images\/pb-to-chr-32.png",
        "48": "images\/pb-to-chr-48.png",
        "64": "images\/pb-to-chr-64.png",
        "128": "images\/pb-to-chr-128.png"
    },
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "options_page": "options.html",
    "permissions": [
        "bookmarks",
        "storage",
        "https:\/\/api.pinboard.in\/"
    ]
}