Larknote
A chrome extension which can enhance the feishu documents’ ability to take notes.
¿Qué es Larknote?
Larknote es una extensión de Chrome desarrollada por Guxi11, y su función principal es "A chrome extension which can enhance the feishu documents’ ability to take notes.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Larknote
Descarga archivos de extensión Larknote en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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# ^_^
Información Básica de la Extensión
Nombre | Larknote |
ID | icjjpnmgiofpnnfpjpbjmfjnaokcdmpi |
URL Oficial | https://chromewebstore.google.com/detail/larknote/icjjpnmgiofpnnfpjpbjmfjnaokcdmpi |
Descripción | A chrome extension which can enhance the feishu documents’ ability to take notes. |
Tamaño del Archivo | 3.26 MB |
Cantidad de Instalaciones | 29 |
Versión Actual | 0.0.2 |
Última Actualización | 2020-08-13 |
Fecha de Publicación | 2020-08-04 |
Desarrollador | Guxi11 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/guxi11/larknote |
Idiomas Soportados | 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" ] } |