Notion Theme

Notion Theme

Um tema dark para o Notion.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.0.1",
  "name": "Notion Theme",
  "author": "Matheus de Araujo Oliveira",
  "description": "Um tema dark para o Notion.",
  "content_scripts": [
    {
      "matches": [
        "https://www.notion.so/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "action": {
    "default_title": "Notion Theme",
    "default_popup": "index.html",
    "default_icon": "icon.png"
  }
}