Examine source code of Language Learning – Word Trainer, Flashcards

Inspect and view changes in Language Learning – Word Trainer, Flashcards 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",
  "version": "25.02.15",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_ext_name__",
  "short_name": "QuizerPlay",
  "description": "__MSG_ext_description__",
  "homepage_url": "https://quizerplay.com",
  "icons": {
    "16": "icons/favicon-16x16.png",
    "32": "icons/favicon-32x32.png",
    "96": "icons/favicon-96x96.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "cookies",
    "sidePanel"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://quizerplay.com/*"
    ]
  },
  "side_panel": {
    "default_path": "panel.html"
  },
  "action": {
    "default_title": "QuizerPlay",
    "default_icon": {
      "16": "icons/favicon-16x16.png",
      "32": "icons/favicon-32x32.png",
      "96": "icons/favicon-96x96.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}