Noto - Notion URL shortener and beautifier
Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.
¿Qué es Noto - Notion URL shortener and beautifier?
Noto - Notion URL shortener and beautifier es una extensión de Chrome desarrollada por https://noto.tools, y su función principal es "Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Noto - Notion URL shortener and beautifier
Descarga archivos de extensión Noto - Notion URL shortener and beautifier 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
Noto (www.noto.tools) integrates seamlessly with Notion (www.notion.so) and allows easy creation of short URLs to pages, databases, and blocks. In addition, it can create beautiful links and generate HTML and Markdown code.
Información Básica de la Extensión
Nombre | Noto - Notion URL shortener and beautifier |
ID | mlealbejkhhkdmafmpojnnmhdcnhfhod |
URL Oficial | https://chromewebstore.google.com/detail/noto-notion-url-shortener/mlealbejkhhkdmafmpojnnmhdcnhfhod |
Descripción | Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion. |
Tamaño del Archivo | 387 KB |
Cantidad de Instalaciones | 1,956 |
Versión Actual | 1.0.6 |
Última Actualización | 2022-04-05 |
Fecha de Publicación | 2022-03-24 |
Calificación | 5.00/5 Total de 5 Calificaciones |
Desarrollador | https://noto.tools |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.noto.tools/ |
URL de la Página de Ayuda | https://www.noto.tools/ |
URL de la Página de Política de Privacidad | https://www.noto.tools/privacy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Noto - Notion URL shortener and beautifier", "short_name": "Noto", "version": "1.0.6", "description": "Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.", "author": "Niklas Salmoukas", "homepage_url": "https:\/\/www.noto.tools", "icons": { "16": "graphics\/icons\/16.png", "48": "graphics\/icons\/48.png", "128": "graphics\/icons\/128.png" }, "permissions": [ "cookies" ], "host_permissions": [ "https:\/\/www.notion.so\/" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/www.notion.so\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "graphics\/*" ], "matches": [ "https:\/\/www.notion.so\/*" ] } ], "background": { "service_worker": "service.js" } } |