Examine source code of autojump

Inspect and view changes in autojump 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": "__MSG_extName__",
  "version": "0.1.5",
  "description": "__MSG_extDescription__",
  "manifest_version": 3,
  "author": "linbingquan",
  "default_locale": "en",
  "action": {
    "default_popup": "popup.html",
    "default_title": "autojump"
  },
  "icons": {
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.oschina.net/action/GoToLink?url=*",
        "*://gitee.com/link?target=*",
        "*://link.zhihu.com/?target=*",
        "*://link.juejin.cn/?target=*",
        "*://link.csdn.net/?target=*",
        "*://www.jianshu.com/go-wild?ac=2&url=*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}