Pinboard Tools

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

ما هو Pinboard Tools؟

Pinboard Tools هو إضافة Chrome تم تطويرها بواسطة mceglowski، والميزة الرئيسية لها هي "The official chrome extension for Pinboard, the minimalist bookmarking site. Lets you save bookmarks and tab sets easily from Chrome".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Pinboard Tools

قم بتنزيل ملفات الامتداد Pinboard Tools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Pinboard Tools Pinboard Tools
ID dpaohcncbmkojcpcjaojcehdlnjfbjkl
عنوان URL الرسمي https://chromewebstore.google.com/detail/pinboard-tools/dpaohcncbmkojcpcjaojcehdlnjfbjkl
الوصف The official chrome extension for Pinboard, the minimalist bookmarking site. Lets you save bookmarks and tab sets easily from Chrome
حجم الملف 32.79 KB
عدد التثبيتات 6,093
النسخة الحالية 1.1.1
آخر تحديث 2019-03-20
تاريخ النشر 2019-03-20
تقييم 3.53/5 مجموع تقييمات 74
المطور mceglowski
نوع الدفع free
موقع الإضافة https://pinboard.in
عنوان صفحة المساعدة https://pinboard.in/support
اللغات المدعومة 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
}