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 |
官方網址 | 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 |
電子郵箱 | [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" } ] } |