Close Notion Tab
Automatically close Notion share link tabs after the desktop app opens.
Close Notion Tabとは何ですか?
Close Notion Tabはhttps://mskelton.devによって開発されたChromeの拡張機能で、その主な機能は「Automatically close Notion share link tabs after the desktop app opens.」です。
拡張機能のスクリーンショット
Close Notion Tab拡張機能のCRXファイルをダウンロード
Close Notion Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension will automatically close the active browser tab for Notion share links after they are opened in the desktop app.
拡張機能の基本情報
名前 | Close Notion Tab |
ID | gnmlnelgpkmikakfkeejommjoknnlpjj |
公式URL | https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj |
説明 | Automatically close Notion share link tabs after the desktop app opens. |
ファイルサイズ | 10.84 KB |
インストール数 | 92 |
現在のバージョン | 1.0 |
最終更新日 | 2023-03-27 |
公開日 | 2023-03-27 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | https://mskelton.dev |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/mskelton/close-notion-tab |
ヘルプページのURL | https://github.com/mskelton/close-notion-tab/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Close Notion Tab", "description": "Automatically close Notion share link tabs after the desktop app opens.", "homepage_url": "https:\/\/github.com\/mskelton\/", "version": "1.0", "manifest_version": 3, "icons": { "16": "\/images\/icon-16.png", "32": "\/images\/icon-32.png", "48": "\/images\/icon-48.png", "128": "\/images\/icon-128.png" }, "background": { "service_worker": "js\/service-worker.js", "type": "module" }, "web_accessible_resources": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "resources": [ "js\/content.js" ] } ], "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "js": [ "js\/content-script.js" ], "run_at": "document_end" } ] } |