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 |
公式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 |
Eメール | [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 } } |