Teachable Enhanced

Teachable Enhanced

Make Teachable.com more user-friendly. Toggle the course sidebar, so the video takes up more screen without going full screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Teachable Enhanced",
  "description": "Make Teachable.com more user-friendly. Toggle the course sidebar, so the video takes up more screen without going full screen.",
  "version": "1.0",
  "manifest_version": 3,
  "icons": {
    "16": "/images/icon-16.png",
    "48": "/images/icon-48.png",
    "128": "/images/icon-128.png"
  },
  "page_action": {
    "default_icon": {
      "16": "/images/icon-16.png",
      "48": "/images/icon-48.png",
      "128": "/images/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/courses/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ]
}