Examine source code of 虎兔助手

Inspect and view changes in 虎兔助手 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
{
  "manifest_version": 3,
  "name": "虎兔助手",
  "description": "为网页版BBS提供IP归属地显示、黑名单等功能,当前仅支持水木社区。",
  "icons": {
    "16": "assets/icons/h16x16.png",
    "32": "assets/icons/h32x32.png",
    "48": "assets/icons/h48x48.png",
    "128": "assets/icons/h128x128.png"
  },
  "version": "2.3.6",
  "minimum_chrome_version": "93",
  "background": {
    "service_worker": "/background.js"
  },
  "action": {
    "default_icon": "assets/icons/h16x16.png",
    "default_title": "虎兔助手",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.newsmth.net/*",
        "https://m.newsmth.net/*",
        "https://www.mysmth.net/*",
        "https://m.mysmth.net/*",
        "https://whois.pconline.com.cn/*"
      ],
      "js": [
        "/content.js"
      ],
      "css": [
        "/assets/css/main.css",
        "/assets/css/note.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dialog.html",
        "assets/icons/*.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "storage",
    "contextMenus"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}