notion-favicon-replacer

notion-favicon-replacer

Replaces notion's dynamic favicons with their default favicon

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-replacer",
  "description": "Replaces notion's dynamic favicons with their default favicon",
  "version": "1.5",
  "icons": {
    "16": "ext_16.png",
    "48": "ext_48.png",
    "128": "ext_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.notion.so/*"
      ],
      "js": [
        "jquery-3.6.0.min.js",
        "replace.js"
      ],
      "run_at": "document_end"
    }
  ]
}