Larknote
A chrome extension which can enhance the feishu documents’ ability to take notes.
Larknote là gì?
Larknote là một tiện ích mở rộng Chrome được phát triển bởi Guxi11, và tính năng chính của nó là "A chrome extension which can enhance the feishu documents’ ability to take notes.".
Ả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 Larknote
Tải xuống các tệp mở rộng Larknote 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
Larknote can enhance the feishu documents’ ability to take notes. Features: 1. Autocomplete link title. When you hover the mouse over the link, the title of the linked page will be automatically parsed and used as the text of the current link. The functions supported now are simple, but can help you increase productivity. Checkout the demo to see larknote in action: https://d9utmw456f.feishu.cn/docs/doccnlRIP2aBOUFz9VyCl5H9zxd# ^_^
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Larknote |
ID | icjjpnmgiofpnnfpjpbjmfjnaokcdmpi |
URL Chính Thức | https://chromewebstore.google.com/detail/larknote/icjjpnmgiofpnnfpjpbjmfjnaokcdmpi |
Mô tả | A chrome extension which can enhance the feishu documents’ ability to take notes. |
Kích Thước Tệp | 3.26 MB |
Số Lần Cài Đặt | 29 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2020-08-13 |
Ngày Phát Hành | 2020-08-04 |
Nhà Phát Triển | Guxi11 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/guxi11/larknote |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Larknote", "version": "0.0.2", "manifest_version": 2, "description": "A chrome extension which can enhance the feishu documents\u2019 ability to take notes.", "homepage_url": "https:\/\/github.com\/guxi11\/larknote", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_title": "Larknote", "default_popup": "popup.html" }, "options_page": "options.html", "default_locale": "en", "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "permissions": [ "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.feishu.cn\/*" ], "css": [ "css\/content.css" ], "js": [ "js\/content.js" ] } ], "web_accessible_resources": [ "css\/content.css", "js\/autolink.js" ] } |