Pinboard Pro

Google Chrome extension for Pinboard (https://pinboard.in).

Pinboard Proคืออะไร?

Pinboard Pro เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://richardkall.se และคุณลักษณะหลักของมันคือ "Google Chrome extension for Pinboard (https://pinboard.in)."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pinboard Pro

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

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

                        FEATURES:
- Save bookmarks
- Save for reading later
- Save tab sets
- Quick access to all your bookmarks, unread items or saved tab sets
- Open random unread item
- Dark mode
- Selected text automatically copied to description field
- Keyboard shortcuts (customizable)
- Fully customizable menu
- Does not store login information

The "Save bookmark"-dialog uses the official popup which means you have accessto all your tags and tag suggestions.                    

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

ชื่อ Pinboard Pro Pinboard Pro
ID pmgaobiflaffpllgnepmhcnbdhfgnpna
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pinboard-pro/pmgaobiflaffpllgnepmhcnbdhfgnpna
คำอธิบาย Google Chrome extension for Pinboard (https://pinboard.in).
ขนาดไฟล์ 17.67 KB
จำนวนการติดตั้ง 692
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2019-12-23
วันที่เผยแพร่ 2019-12-23
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา https://richardkall.se
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://richardkall.se/google-chrome-extension-for-pinboard-in-pinboard-pro/
URL หน้าช่วยเหลือ https://github.com/richardkall/pinboard-pro-chrome-extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pinboard Pro",
    "manifest_version": 2,
    "description": "Google Chrome extension for Pinboard (https:\/\/pinboard.in).",
    "author": "Richard K\u00e4ll",
    "homepage_url": "http:\/\/richardkall.se\/google-chrome-extension-for-pinboard-in-pinboard-pro\/",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icon-white16.png",
            "24": "icon-white24.png",
            "32": "icon-white32.png",
            "48": "icon-white48.png",
            "128": "icon-white128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Pinboard Pro"
    },
    "commands": {
        "readLater": {
            "description": "Read later",
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "MacCtrl+Shift+L"
            }
        },
        "saveBookmark": {
            "description": "Save bookmark",
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            }
        },
        "saveTabSet": {
            "description": "Save tab set"
        },
        "openAllUnread": {
            "description": "All unread",
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            }
        },
        "openAllBookmarks": {
            "description": "All bookmarks",
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            }
        },
        "openAllTabSets": {
            "description": "All tab sets"
        },
        "openRandomUnread": {
            "description": "Random unread"
        }
    },
    "icons": {
        "16": "icon-black16.png",
        "24": "icon-black24.png",
        "32": "icon-black32.png",
        "48": "icon-black48.png",
        "128": "icon-black128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "https:\/\/pinboard.in\/tabs\/save\/"
    ],
    "version": "2.0.0"
}