Examine source code of PrepSheet: Free YouTube Notes Generator

Inspect and view changes in PrepSheet: Free YouTube Notes Generator source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PrepSheet: Free YouTube Notes Generator",
  "description": "Pull key formulas, concepts, theorems, and how to apply them from a YouTube video to help you be prepared for exams & interviews.",
  "version": "1.0.6",
  "icons": {
    "16": "images/icon-16.png",
    "24": "images/icon-24.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "action": {
    "default_title": "PrepSheet: Free YouTube Notes Generator"
  },
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://gateway.chegg.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/libs/loadFont.js",
        "js/libs/copies.js",
        "js/libs/icons.js",
        "js/libs/button.js",
        "js/libs/loader.js",
        "js/libs/slideout.js",
        "js/libs/videoUtils.js",
        "js/libs/analyticsUtils.js",
        "js/libs/storedSummaryUtils.js",
        "content-script.js"
      ],
      "css": [
        "styles/libs/variables.css",
        "styles/libs/chegg_loader.css",
        "styles/libs/chegg_btn.css",
        "styles/libs/slideout.css",
        "styles/libs/chegg_create_sheet.css",
        "styles/libs/chegg_saved_item.css",
        "styles/cheat_sheat_styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/aspira-webfont.woff2"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  }
}