Examine source code of PingPong贸易还原小助手

Inspect and view changes in PingPong贸易还原小助手 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": 2,
  "name": "PingPong贸易还原小助手",
  "version": "1.0.4",
  "description": "为您采集真实的交易信息",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>",
    "unlimitedStorage",
    "tabs",
    "activeTab"
  ],
  "web_accessible_resources": [],
  "background": {
    "persistent": true,
    "scripts": [
      "lib/jquery.js",
      "lib/md5.min.js",
      "lib/localforage.min.js",
      "config.js",
      "util.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "assets/icons/128x128.png",
    "default_title": "PingPong贸易还原小助手",
    "default_popup": "index.html"
  },
  "options_page": "index.html",
  "short_name": "PingPong贸易还原小助手",
  "icons": {
    "16": "assets/icons/16x16.png",
    "48": "assets/icons/48x48.png",
    "128": "assets/icons/128x128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [],
      "js": [
        "lib/jquery.js",
        "lib/md5.min.js",
        "lib/localforage.min.js",
        "config.js",
        "util.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}