Noto - Notion URL shortener and beautifier

Noto - Notion URL shortener and beautifier

Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Noto - Notion URL shortener and beautifier",
  "short_name": "Noto",
  "version": "1.0.6",
  "description": "Do you hate posting lengthy Notion URLs? Not anymore! Noto Link is a seamlessly integrated URL shortener and beautifier for Notion.",
  "author": "Niklas Salmoukas",
  "homepage_url": "https://www.noto.tools",
  "icons": {
    "16": "graphics/icons/16.png",
    "48": "graphics/icons/48.png",
    "128": "graphics/icons/128.png"
  },
  "permissions": [
    "cookies"
  ],
  "host_permissions": [
    "https://www.notion.so/"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://www.notion.so/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "graphics/*"
      ],
      "matches": [
        "https://www.notion.so/*"
      ]
    }
  ],
  "background": {
    "service_worker": "service.js"
  }
}