Floaty Note

Floaty Note

A fuss-free notepad extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Floaty Note",
  "version": "1.1",
  "manifest_version": 3,
  "description": "A fuss-free notepad extension",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Y",
        "mac": "MacCtrl+Y"
      }
    }
  },
  "permissions": [
    "storage"
  ],
  "action_handlers": {
    "default": {
      "type": "popup",
      "chrome_style": true
    }
  }
}