Quiz Me Ai - Remember what you learn online.

Quiz Me Ai - Remember what you learn online.

Spaced repetition and active recall on autopilot. Turn learning content into quick reviews to facilitate long term memory.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Spaced repetition and active recall on autopilot. Turn learning content into quick reviews to facilitate long term memory.",
  "version": "3.2.22",
  "content_security_policy": "script-src 'self' ; object-src 'self'",
  "name": "Quiz Me Ai - Remember what you learn online.",
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "identity",
    "identity.email",
    "cookies",
    "https://accounts.google.com/",
    "http://localhost/",
    "https://dashboard.quizme.ai/api/",
    "http://*/*",
    "https://*/*"
  ],
  "manifest_version": 2,
  "icons": {
    "16": "quiz_me16.png",
    "48": "quiz_me48.png",
    "128": "quiz_me128.png"
  },
  "browser_action": {
    "default_icon": "quiz_me128.png",
    "default_title": "Learning Buddy",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "oauth2": {
    "client_id": "1068481930082-86avoaqbljfacjnfsvn9df3d5i21lga7.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/userinfo.email",
      "openid"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "example.bundle.js"
      ]
    }
  ]
}