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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |