Notion Syntax Highlighter

Notion Syntax Highlighter

Improves Notion's code blocks syntax highlighting + adds tons of theme options

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notion Syntax Highlighter",
  "description": "Improves Notion's code blocks syntax highlighting + adds tons of theme options",
  "version": "0.0.3",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "img/logo-16.png",
    "32": "img/logo-32.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "img/logo-48.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/index.ts-loader.ab83a5cd.js"
      ],
      "matches": [
        "https://*.notion.so/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": [
        "img/logo-16.png",
        "img/logo-32.png",
        "img/logo-48.png",
        "img/logo-128.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "https://*.notion.so/*"
      ],
      "resources": [
        "assets/chunk-d1255eab.js",
        "assets/chunk-fadedf14.js",
        "assets/chunk-ffcfbdba.js",
        "assets/chunk-db543da2.js"
      ],
      "use_dynamic_url": true
    }
  ]
}