Askify - Youtube Notes

Askify - Youtube Notes

Take Notes From Youtube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Askify - Youtube Notes",
  "description": "Take Notes From Youtube",
  "version": "2.4.4",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon-512x512-16x16.png",
      "32": "icon-512x512-32x32.png",
      "48": "icon-512x512-48x48.png",
      "128": "icon-512x512-128x128.png"
    }
  },
  "icons": {
    "16": "icon-512x512-16x16.png",
    "32": "icon-512x512-32x32.png",
    "48": "icon-512x512-48x48.png",
    "128": "icon-512x512-128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.askify.video/*",
      "https://askify-video--askify-test-y8atayf4.web.app/*"
    ]
  },
  "permissions": [
    "storage",
    "scripting",
    "system.memory",
    "activeTab"
  ],
  "host_permissions": [
    "https://*.youtube.com/*"
  ]
}