Examine source code of TypePractice Select

Inspect and view changes in TypePractice Select 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": "TypePractice Select",
  "version": "1.4",
  "description": "Interactive reading by typing selected text",
  "icons": {
    "16": "typeselection.png",
    "48": "typeselection.png",
    "128": "typeselection.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}