Slay School: AI flashcard maker & Quizlet alternative

Slay School: AI flashcard maker & Quizlet alternative

Generate flashcards, multiple choice questions, study guides and summaries from any page on the internet using AI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Slay School: AI flashcard maker & Quizlet alternative",
  "description": "Generate flashcards, multiple choice questions, study guides and summaries from any page on the internet using AI",
  "version": "0.0.5",
  "action": {
    "default_popup": "index.html",
    "default_icon": "favicon.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "identity",
    "storage"
  ],
  "oauth2": {
    "client_id": "1074798605388-3cuvl2rbok73st1s6utr75ade2d0ptd5.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "email",
      "profile"
    ]
  },
  "background": {
    "service_worker": "extension/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.uworld.com/*"
      ],
      "js": [
        "extension/script.js"
      ]
    }
  ],
  "icons": {
    "512": "favicon.png"
  }
}