linkding extension
Companion extension for the linkding bookmark service
什麼是linkding extension?
linkding extension是由Sascha Ißbrücker開發的Chrome擴展程式,該擴展的主要功能是“Companion extension for the linkding bookmark service”。
擴展截圖
下載linkding extension擴展crx文件
下載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 |
ID | beakmhbijpdhipnjhnclmhgjlddhidpe |
官方網址 | 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:\/\/*\/*" ] } |