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文件
下載Open in Notion擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 } } |