Open in Notion
Open share links in your desktop app.
Open in Notion란 무엇입니까?
Open in Notion은(는) Sergey Osokin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open share links in your desktop app."입니다.
확장 프로그램 스크린샷
Open in Notion 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Automaticaly opens all share links in the your desktop app (Mac OS, Windows). This is an unofficial extension. Usage: 1. Download desktop app: https://www.notion.so/desktop 2. Install extension 3. After the first redirect links to the Notion desktop, remember to check "Always open these types of links in the associated app" to not be asked again. Notice: Restore the "Always open these types of links in the associated app" >> https://superuser.com/a/1518982 4. Enable tab auto-close ONLY if you have activated "Always open these types of links in the associated app". Click on the extension icon to toggle on/off it. Right click and click on "Options" to access more settings.
확장 프로그램 기본 정보
이름 | Open in Notion |
ID | kjemindnkfgkkfdekkinfamjahhlemca |
공식 URL | https://chromewebstore.google.com/detail/open-in-notion/kjemindnkfgkkfdekkinfamjahhlemca |
설명 | Open share links in your desktop app. |
파일 크기 | 20.38 KB |
설치 횟수 | 10,000 |
현재 버전 | 0.1.5.6 |
최근 업데이트 | 2023-03-22 |
출시 날짜 | 2020-05-10 |
평점 | 4.50/5 총 14 개의 평점 |
개발자 | Sergey Osokin |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/creold/open-in-notion |
개인정보 보호 정책 페이지 URL | https://sergosokin.notion.site/Privacy-Policy-952d713797e14c71a390143be0eef94a |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Open in Notion", "version": "0.1.5.6", "description": "Open share links in your desktop app.", "icons": { "128": "icons\/icon-ext-128.png", "16": "icons\/icon-ext-16.png", "48": "icons\/icon-ext-48.png" }, "background": { "service_worker": "js\/background.js" }, "action": { "default_icon": { "128": "icons\/icon-on-128.png", "16": "icons\/icon-on-16.png", "32": "icons\/icon-on-32.png", "48": "icons\/icon-on-48.png" }, "default_title": "Open in Notion" }, "content_scripts": [ { "matches": [ "*:\/\/*.notion.so\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "host_permissions": [ "*:\/\/*.notion.so\/*" ], "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": false } } |