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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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:\/\/*\/*" ] } |