Tailored Notion

Tailored Notion

Redesign Notion the way you want

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Tailored Notion",
  "description": "Redesign Notion the way you want",
  "version": "0.4.1",
  "author": "Thomas Malicet @tmalicet",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "homepage_url": "http://tailored-notion.com",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/notion-16.png",
      "48": "assets/notion-48.png",
      "128": "assets/notion-tailored.png"
    }
  },
  "icons": {
    "16": "assets/notion-16.png",
    "48": "assets/notion-48.png",
    "128": "assets/notion-tailored.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.notion.so/*"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ],
      "css": [
        "themes/common.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/vendor.js"
    ]
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "assets/*",
    "themes/*",
    "fonts/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}