Clarity

Clarity

Take notes at the speed of your thoughts!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Clarity",
  "description": "Take notes at the speed of your thoughts!",
  "version": "0.0.0.22",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://www.claritynotes.io/*",
        "https://app.claritynotes.io/*"
      ],
      "js": [
        "jquery.js",
        "supabase.js",
        "airtable.js",
        "easymde.js",
        "snarkdown.js",
        "get-video-id.js",
        "content-script.js"
      ],
      "css": [
        "css/all.min.css",
        "style.css",
        "easymde.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/notes-16.png",
    "48": "images/notes-48.png",
    "128": "images/notes-128.png"
  },
  "permissions": [
    "storage",
    "notifications"
  ],
  "action": {},
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      }
    }
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "css/all.min.css",
        "webfonts/*",
        "fonts/Inter-VariableFont_slnt,wght.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}