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.
O que é Noto - Notion URL shortener and beautifier?
Noto - Notion URL shortener and beautifier é uma extensão do Chrome desenvolvida por https://noto.tools, e sua principal característica é "Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Noto - Notion URL shortener and beautifier
Baixe arquivos de extensão Noto - Notion URL shortener and beautifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Noto - Notion URL shortener and beautifier |
ID | mlealbejkhhkdmafmpojnnmhdcnhfhod |
URL Oficial | https://chromewebstore.google.com/detail/noto-notion-url-shortener/mlealbejkhhkdmafmpojnnmhdcnhfhod |
Descrição | Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion. |
Tamanho do Arquivo | 387 KB |
Contagem de Instalações | 1,956 |
Versão Atual | 1.0.6 |
Última Atualização | 2022-04-05 |
Data de Publicação | 2022-03-24 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | https://noto.tools |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.noto.tools/ |
URL da Página de Ajuda | https://www.noto.tools/ |
URL da Página de Política de Privacidade | https://www.noto.tools/privacy |
Idiomas Suportados | 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" } } |