LunaNotes - Take notes on YouTube

LunaNotes - Take notes on YouTube

The Simplest Way to Take Notes on YouTube Videos!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.3.3",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArJcTTAIoHq+ZP5Lqz2N1ukvAPktnIU+8jvO3YMgatG/oPMhTSWQen1wHpDHlD4vxJiqqRI1/vePZTEGvrkpqG9xHNCbPcpTyF3Yui5tvBfxJNQKdHHahKndFn1gPBrtL/BBXj40k/ShhzBe6/1atFuSYGIRCml/m5f1e3aKXRAgPkz4a/gvuQU8RleZ4WQTNNT85rrKb73BjurTK24cMy4vFd3bqISBfxMDc8FunkrXe1uXipRr5pRp0ECnlY2zv1+O56w7Yp/SNUn59t3wyYTMZ1219y5LFGZw/eg5+P2Qo+n2pbL41X7aFKLbH1aU//xszzEHWwRKGJ1fIEtxfAQIDAQAB",
  "name": "__MSG_extName__",
  "short_name": "LunaNotes",
  "description": "__MSG_extDescription__",
  "author": "jfdelarosa",
  "externally_connectable": {
    "matches": [
      "http://*.localhost:*/*",
      "https://*.lunanotes.io/*"
    ]
  },
  "background": {
    "service_worker": "background/index.js"
  },
  "default_locale": "en",
  "icons": {
    "128": "assets/icon.png"
  },
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "content/content.js"
      ],
      "css": [
        "assets/styles.css",
        "content/style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}