Notion Global Block

Notion Global Block

Paste Notion Block URLs as a Global Block URL

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notion Global Block",
  "version": "0.1.1",
  "manifest_version": 2,
  "description": "Paste Notion Block URLs as a Global Block URL",
  "permissions": [
    "contextMenus",
    "clipboardRead",
    "activeTab"
  ],
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.notion.so/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}