Notion Boost

Notion Boost

Boost Notion productivity with 20+ customizations like outline,small text full width for all,back to top button etc

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notion Boost",
  "short_name": "Notion Boost",
  "version": "3.3.1",
  "description": "Boost Notion productivity with 20+ customizations like outline,small text full width for all,back to top button etc",
  "author": "Gourav Goyal",
  "content_scripts": [
    {
      "matches": [
        "*://*.notion.so/*",
        "*://*.notion.site/*"
      ],
      "js": [
        "content.bundle.js"
      ]
    },
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "extPay.bundle.js"
      ]
    }
  ],
  "page_action": {
    "default_title": "Notion Boost",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    }
  },
  "web_accessible_resources": [
    "content.bundle.js"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; connect-src https://extensionpay.com",
  "homepage_url": "https://gourav.io/notion-boost",
  "offline_enabled": true,
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.bundle.js"
    ],
    "persistent": false
  }
}