YouTube Notetaker | Terrain

YouTube Notetaker | Terrain

Take notes and creation action items while watching YouTube videos in a distraction free zone. No more YouTube rabbit holes!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Notetaker | Terrain",
  "author": "www.knowtheterrain.io",
  "version": "1.1",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "style/button.css"
      ]
    }
  ],
  "manifest_version": 3,
  "icons": {
    "16": "icons/16.png",
    "19": "icons/19.png",
    "24": "icons/24.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage"
  ]
}