notion plus icon

notion plus icon

It is convenient to use icons in notion。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "notion plus icon",
  "manifest_version": 3,
  "version": "1.0.1",
  "description": "It is convenient to use icons in notion。",
  "icons": {
    "48": "[email protected]",
    "128": "[email protected]"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://www.notion.so/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "[email protected]",
        "[email protected]"
      ],
      "matches": [
        "https://www.notion.so/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.notion.so/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "48": "[email protected]",
      "128": "[email protected]"
    },
    "default_popup": "popup.html"
  }
}