Examine source code of KEset | Correcting gibberish typing

Inspect and view changes in KEset | Correcting gibberish typing 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
{
  "name": "KEset | Correcting gibberish typing",
  "description": "Correcting wrong language typing with a short-cut",
  "version": "1.0",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "storage",
    "activTab"
  ],
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "hello_extensions16.png",
      "32": "hello_extensions32.png",
      "48": "hello_extensions48.png",
      "128": "hello_extensions128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "contentscript.js"
      ],
      "css": [
        "extension.css"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "hello_extensions16.png",
    "32": "hello_extensions32.png",
    "48": "hello_extensions48.png",
    "128": "hello_extensions128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      },
      "description": "Correct gibberish"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}