Close Notion Tab
Automatically close Notion share link tabs after the desktop app opens.
Close Notion Tabคืออะไร?
Close Notion Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mskelton.dev และคุณลักษณะหลักของมันคือ "Automatically close Notion share link tabs after the desktop app opens."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Close Notion Tab
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } ] } |