Briefkasten Bookmarks
Companion extension for the Briefkasten bookmark app.
Briefkasten Bookmarks là gì?
Briefkasten Bookmarks là một tiện ích mở rộng Chrome được phát triển bởi https://ndo.dev, và tính năng chính của nó là "Companion extension for the Briefkasten bookmark app.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Briefkasten Bookmarks
Tải xuống các tệp mở rộng Briefkasten Bookmarks dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This is an extension for saving items to your Briefkasten bookmarks collection. By default, it will auto-fill the page title, description, etc. from your currently active tab. Of course, you can overwrite any of these fields before hitting "Save" and committing it to your collection. Note: This extension is useless without a Briefkasten (https://briefkasten.vercel.app) account!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Briefkasten Bookmarks |
ID | aighkhofochfjejmhjfkgjfpkpgmjlnd |
URL Chính Thức | https://chromewebstore.google.com/detail/briefkasten-bookmarks/aighkhofochfjejmhjfkgjfpkpgmjlnd |
Mô tả | Companion extension for the Briefkasten bookmark app. |
Kích Thước Tệp | 35.84 KB |
Số Lần Cài Đặt | 244 |
Phiên Bản Hiện Tại | 0.5.2 |
Cập Nhật Lần Cuối | 2022-07-09 |
Ngày Phát Hành | 2022-05-31 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://ndo.dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ndom91/briefkasten-extension |
URL Trang Trợ Giúp | https://github.com/ndom91/briefkasten-extension/issues/new |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Briefkasten Bookmarks", "version": "0.5.2", "description": "Companion extension for the Briefkasten bookmark app.", "homepage_url": "https:\/\/github.com\/ndom91\/briefkasten-extension\/", "icons": { "16": "src\/icons\/logo-16x16.png", "48": "src\/icons\/logo-48x48.png", "96": "src\/icons\/logo-96x96.png", "128": "src\/icons\/logo-128x128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "omnibox": { "keyword": "bk" }, "action": { "default_icon": { "16": "src\/icons\/logo-16x16.png", "19": "src\/icons\/logo-19x19.png", "32": "src\/icons\/logo-32x32.png", "38": "src\/icons\/logo-38x38.png" }, "default_title": "Add bookmark (Alt+Shift+L)", "default_popup": "src\/popup\/index.html" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+K", "windows": "Ctrl+Shift+K", "linux": "Ctrl+Shift+K" }, "description": "Open a popup to bookmark current page." } }, "options_ui": { "page": "src\/options\/index.html" }, "permissions": [ "storage", "background" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |