Duolingo Solution Viewer

Duolingo Solution Viewer

Provides access to the lists of solutions for Duolingo's translation / listening challenges, and restores the correction of typos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Duolingo Solution Viewer",
  "version": "4.17.2",
  "description": "Provides access to the lists of solutions for Duolingo's translation / listening challenges, and restores the correction of typos.",
  "permissions": [
    "https://*.duolingo.com/"
  ],
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.duolingo.com/*"
      ],
      "js": [
        "src/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "assets/css/ui.css",
    "src/observer.js",
    "src/ui.js"
  ],
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png",
    "256": "icons/icon_256.png"
  },
  "manifest_version": 2
}