Close Notion Tab
Automatically close Notion share link tabs after the desktop app opens.
Close Notion Tab là gì?
Close Notion Tab là một tiện ích mở rộng Chrome được phát triển bởi https://mskelton.dev, và tính năng chính của nó là "Automatically close Notion share link tabs after the desktop app opens.".
Ả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 Close Notion Tab
Tải xuống các tệp mở rộng Close Notion Tab 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
This extension will automatically close the active browser tab for Notion share links after they are opened in the desktop app.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Close Notion Tab |
ID | gnmlnelgpkmikakfkeejommjoknnlpjj |
URL Chính Thức | https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj |
Mô tả | Automatically close Notion share link tabs after the desktop app opens. |
Kích Thước Tệp | 10.84 KB |
Số Lần Cài Đặt | 92 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2023-03-27 |
Ngày Phát Hành | 2023-03-27 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://mskelton.dev |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mskelton/close-notion-tab |
URL Trang Trợ Giúp | https://github.com/mskelton/close-notion-tab/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |