NotionSidebarHider

This is an extension that prevents the Notion sidebar from opening on hover.

NotionSidebarHiderคืออะไร?

NotionSidebarHider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://notion-fan.com และคุณลักษณะหลักของมันคือ "This is an extension that prevents the Notion sidebar from opening on hover."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NotionSidebarHider

ดาวน์โหลดไฟล์ส่วนขยาย NotionSidebarHider ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This Chrome extension prevents the Notion sidebar from appearing on hover. You can display the sidebar only when you want to, by using shortcut keys or clicking a button. This extension is designed to prevent the sidebar from being displayed unexpectedly, and to allow you to control when it is visible.

このChrome拡張機能は、Notion のサイドバーがホバーで表示されることを防ぎます。ご自身がサイドバーを表示したいタイミングだけ、ショートカットキーやボタンクリックでサイドバーを表示することができます。                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ NotionSidebarHider NotionSidebarHider
ID laogfgfllgbpkdbggdbmlfbogikkfinj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/notionsidebarhider/laogfgfllgbpkdbggdbmlfbogikkfinj
คำอธิบาย This is an extension that prevents the Notion sidebar from opening on hover.
ขนาดไฟล์ 17.09 KB
จำนวนการติดตั้ง 611
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2023-05-02
วันที่เผยแพร่ 2023-05-02
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://notion-fan.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NotionSidebarHider",
    "description": "This is an extension that prevents the Notion sidebar from opening on hover.",
    "version": "0.1.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}