linkding extension

Companion extension for the linkding bookmark service

linkding extensionคืออะไร?

linkding extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sascha Ißbrücker และคุณลักษณะหลักของมันคือ "Companion extension for the linkding bookmark service"

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

screenshot

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

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

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

                        linkding is a self-hosted bookmark manager. This is a companion extension that allows to quickly add bookmarks to your linkding instance.

Features:
- Quickly add a bookmark for the current tab (keyboard shortcut: Alt+Shift+L)
- Search bookmarks through the Omnibox / address bar (enter 'ld', followed by Space, then enter the search term)

NOTE: This extension is only useful if you are already using or are interested in installing linkding.                    

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

ชื่อ linkding extension linkding extension
ID beakmhbijpdhipnjhnclmhgjlddhidpe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/linkding-extension/beakmhbijpdhipnjhnclmhgjlddhidpe
คำอธิบาย Companion extension for the linkding bookmark service
ขนาดไฟล์ 208 KB
จำนวนการติดตั้ง 4,820
เวอร์ชันปัจจุบัน 1.8.0
อัปเดตครั้งล่าสุด 2023-10-04
วันที่เผยแพร่ 2021-02-13
คะแนน 5.00/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Sascha Ißbrücker
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sissbruecker/linkding-extension
URL หน้าช่วยเหลือ https://github.com/sissbruecker/linkding-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "linkding extension",
    "version": "1.8.0",
    "description": "Companion extension for the linkding bookmark service",
    "homepage_url": "https:\/\/github.com\/sissbruecker\/linkding-extension\/",
    "icons": {
        "48": "icons\/logo_48x48.png",
        "96": "icons\/logo_96x96.png",
        "128": "icons\/logo_128x128.png"
    },
    "background": {
        "service_worker": "build\/background.js"
    },
    "omnibox": {
        "keyword": "ld"
    },
    "action": {
        "default_icon": {
            "19": "icons\/button_19x19.png",
            "32": "icons\/button_32x32.png",
            "38": "icons\/button_38x38.png"
        },
        "default_title": "Add bookmark (Alt+Shift+L)",
        "default_popup": "popup\/index.html"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Open a popup to bookmark current page."
        }
    },
    "options_ui": {
        "page": "options\/index.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}