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.
什么是Noto - Notion URL shortener and beautifier?
Noto - Notion URL shortener and beautifier是由https://noto.tools开发的Chrome扩展程序,该扩展的主要功能是“Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.”。
扩展截图
下载Noto - Notion URL shortener and beautifier扩展crx文件
下载Noto - Notion URL shortener and beautifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Noto - Notion URL shortener and beautifier |
ID | mlealbejkhhkdmafmpojnnmhdcnhfhod |
官方URL | https://chromewebstore.google.com/detail/noto-notion-url-shortener/mlealbejkhhkdmafmpojnnmhdcnhfhod |
简介 | Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion. |
文件大小 | 387 KB |
安装次数 | 1,956 |
当前版本 | 1.0.6 |
更新时间 | 2022-04-05 |
上架时间 | 2022-03-24 |
评分 | 5.00/5 共5次评分 |
开发者 | https://noto.tools |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.noto.tools/ |
帮助页面URL | https://www.noto.tools/ |
隐私政策页面URL | https://www.noto.tools/privacy |
支持的语言 | 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" } } |