Knowt: Quizlet Import, AI Notes & Flashcards

Knowt: Quizlet Import, AI Notes & Flashcards

Automatically import flashcards and notes from any video, PDF, article, or flashcard site. Knowt is the fastest way to study.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Knowt: Quizlet Import, AI Notes & Flashcards",
  "short_name": "Knowt",
  "description": "Automatically import flashcards and notes from any video, PDF, article, or flashcard site. Knowt is the fastest way to study.",
  "version": "3.5",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Knowt: Import and Study with AI"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.quizlet.com/*",
        "*://*.cram.com/flashcards/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "file:///*"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.knowt.io/*",
      "*://*.knowt.com/*"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  }
}