Notion Prettier

Notion Prettier

Notion Prettier makes the code look prettier in Notion.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Notion Prettier",
  "version": "0.0.15",
  "description": "Notion Prettier makes the code look prettier in Notion.",
  "author": "Namheon Baek",
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.js",
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "main.js"
      ],
      "css": [
        "style.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "type": "module"
}