Notion Sidebar Tamer

Notion Sidebar Tamer

Disable the hover sidebar in Notion.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Notion Sidebar Tamer",
  "description": "Disable the hover sidebar in Notion.",
  "version": "0.5",
  "host_permissions": [
    "https://www.notion.so/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.notion.so/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "128": "images/128.png"
  }
}