Examine source code of Koreanish

Inspect and view changes in Koreanish 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",
  "manifest_version": 3,
  "name": "Koreanish",
  "description": "Replace English with Korean to advance your duolingo vocabulary!",
  "version": "1.2",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "icons": {
    "48": "lipj48.png",
    "128": "lipj128.png"
  },
  "browser_action": {
    "default_icon": {
      "48": "lipj48.png",
      "128": "lipj128.png"
    },
    "default_title": "#content",
    "default_popup": "options.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Test",
    "default_icon": "lipj48.png",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "change.js"
      ]
    }
  ]
}