Open in Notion
Open share links in your desktop app.
Open in Notion là gì?
Open in Notion là một tiện ích mở rộng Chrome được phát triển bởi Sergey Osokin, và tính năng chính của nó là "Open share links in your desktop app.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Open in Notion
Tải xuống các tệp mở rộng Open in Notion dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Open in Notion |
ID | kjemindnkfgkkfdekkinfamjahhlemca |
URL Chính Thức | https://chromewebstore.google.com/detail/open-in-notion/kjemindnkfgkkfdekkinfamjahhlemca |
Mô tả | Open share links in your desktop app. |
Kích Thước Tệp | 20.38 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 0.1.5.6 |
Cập Nhật Lần Cuối | 2023-03-22 |
Ngày Phát Hành | 2020-05-10 |
Đánh Giá | 4.50/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | Sergey Osokin |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/creold/open-in-notion |
URL Trang Chính Sách Bảo Mật | https://sergosokin.notion.site/Privacy-Policy-952d713797e14c71a390143be0eef94a |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |