Close Notion Tab
Automatically close Notion share link tabs after the desktop app opens.
Apa itu Close Notion Tab?
Close Notion Tab adalah ekstensi Chrome yang dikembangkan oleh https://mskelton.dev, dan fitur utamanya adalah "Automatically close Notion share link tabs after the desktop app opens.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Close Notion Tab
Unduh file ekstensi Close Notion Tab dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This extension will automatically close the active browser tab for Notion share links after they are opened in the desktop app.
Informasi Dasar Ekstensi
Nama | Close Notion Tab |
ID | gnmlnelgpkmikakfkeejommjoknnlpjj |
URL Resmi | https://chromewebstore.google.com/detail/close-notion-tab/gnmlnelgpkmikakfkeejommjoknnlpjj |
Deskripsi | Automatically close Notion share link tabs after the desktop app opens. |
Ukuran File | 10.84 KB |
Jumlah Instalasi | 92 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2023-03-27 |
Tanggal Publikasi | 2023-03-27 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | https://mskelton.dev |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/mskelton/close-notion-tab |
URL Halaman Bantuan | https://github.com/mskelton/close-notion-tab/issues |
Bahasa yang Didukung | 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" } ] } |