Notion Favicon Fixer

Notion Favicon Fixer

TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo. Notion pages have a feature where the page's…

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 Favicon Fixer",
  "version": "1.0",
  "icons": {
    "128": "icon.jpeg"
  },
  "content_scripts": [
    {
      "matches": [
        "https://notion.so/*",
        "https://www.notion.so/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}