Examine source code of SBN 키 매크로

Inspect and view changes in SBN 키 매크로 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": "SBN 키 매크로",
  "version": "1.0",
  "description": "Alt+Shift+1~9 키를 누르면 설정한 텍스트를 입력합니다.",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "key_event.js"
      ],
      "permissions": [
        "activeTab"
      ]
    }
  ],
  "icons": {
    "16": "icon_nobg.png",
    "48": "icon_nobg.png",
    "128": "icon_nobg.png"
  },
  "options_page": "options.html"
}