Examine source code of Free-Jump

Inspect and view changes in Free-Jump 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": "Free-Jump",
  "version": "0.0.0.5",
  "description": "freely jump and move around.",
  "permissions": [
    "activeTab",
    "webNavigation",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.jianshu.com/*",
        "*://*.oschina.net/*",
        "*://*.juejin.cn/*",
        "*://*.zhihu.com/*",
        "*://*.tencent.com/*",
        "*://*.csdn.net/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}