Notion Quick Notes

Notion Quick Notes

Utilities for easy note taking with Notion

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notion Quick Notes",
  "version": "1.0.0",
  "description": "Utilities for easy note taking with Notion",
  "permissions": [
    "declarativeContent",
    "activeTab",
    "https://notion.so/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "commands": {
    "new_note": {
      "suggested_key": {
        "default": "Alt+T"
      },
      "description": "Create new note"
    },
    "_execute_page_action": {
      "suggested_key": {
        "default": "Alt+L"
      }
    }
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/qn16.png",
      "32": "images/qn32.png",
      "48": "images/qn48.png",
      "128": "images/qn128.png"
    }
  },
  "icons": {
    "16": "images/qn16.png",
    "32": "images/qn32.png",
    "48": "images/qn48.png",
    "128": "images/qn128.png"
  },
  "manifest_version": 2
}