Blue Notion

Blue Notion

Makes links in Notion blue

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Blue Notion",
  "description": "Makes links in Notion blue",
  "version": "1.0",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "action": {
    "default_icon": "icons/icon.png"
  },
  "content_scripts": [
    {
      "css": [
        "custom.css"
      ],
      "matches": [
        "https://www.notion.so/*"
      ]
    }
  ]
}