NoteGPT: AI Flashcard for Quizlet and Cram

NoteGPT: AI Flashcard for Quizlet and Cram

Import Quizlet flashcards. Take AI-powered notes. More integrations coming soon.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.3",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "host_permissions": [
    "https://quizlet.com/*",
    "*://*.notegpt.io/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-src https://notegpt.io/;"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "logo.png",
      "32": "logo.png",
      "48": "logo.png",
      "128": "logo.png",
      "300": "logo.png",
      "500": "logo.png"
    },
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "logo.png",
        "static/images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}