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": "帮助您方便地收集关注范围内的小区/房源状态(链家平台), 记录价格/状态变动数据, 并分析和展示历史数据",
  "version": "1.0.4",
  "icons": {
    "16": "/icon/16.png",
    "24": "/icon/24.png",
    "48": "/icon/48.png",
    "96": "/icon/96.png",
    "128": "/icon/128.png"
  },
  "permissions": [
    "storage",
    "declarativeNetRequestWithHostAccess",
    "declarativeNetRequest",
    "sidePanel"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "查看",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.lianjia.com/*"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content-scripts/content.css"
      ],
      "matches": [
        "*://*.lianjia.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}