Notion Forms

Notion Forms

Hide Notion widget border

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notion Forms",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Hide Notion widget border",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.notion.so/*"
      ],
      "css": [],
      "js": [
        "src/custom.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "https://*.notion.so/*",
    "cookies"
  ],
  "browser_action": {
    "default_popup": "src/popup.html",
    "default_title": "Notion Forms"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-...='; object-src 'self'"
}