Notion Tweaks

Notion Tweaks

For Notion. Development of this extension is in stop.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Notion Tweaks",
  "version": "1.0.1",
  "description": "For Notion. Development of this extension is in stop.",
  "author": "eetann",
  "icons": {
    "16": "imgs/icon16.png",
    "48": "imgs/icon48.png",
    "128": "imgs/icon128.png"
  },
  "host_permissions": [
    "https://script.google.com/",
    "https://script.googleusercontent.com/",
    "https://api.notion.com/"
  ],
  "permissions": [
    "storage"
  ],
  "commands": {
    "today": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "global": true,
      "description": "Open today page."
    }
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://www.notion.so/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js",
        "chunk.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}