Examine source code of HTSK Anki Tool

Inspect and view changes in HTSK Anki Tool 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",
  "name": "HTSK Anki Tool",
  "description": "Turn the vocab at the beginning of How to Study Korean lessons into Anki flashcards with the press of a button!",
  "version": "3.0",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_title": "HTSK Anki Tool",
    "default_popup": "pop.html"
  },
  "icons": {
    "16": "./16.png",
    "32": "./32.png",
    "48": "./48.png",
    "128": "./128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.howtostudykorean.com/unit*"
      ],
      "js": [
        "jquery.js"
      ]
    }
  ]
}