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
{
  "name": "岗位同步",
  "version": "1.4",
  "manifest_version": 2,
  "description": "报名信息自动同步",
  "background": {
    "scripts": [
      "js/jquery-3.3.1.min.js",
      "js/fingerprint.js",
      "background.js"
    ],
    "persistent": true
  },
  "icons": {
    "16": "image/icon-index-16.png",
    "48": "image/icon-index-48.png",
    "128": "image/icon-index-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://zhaogongzuo.kuaishou.com/app/*"
      ],
      "css": [
        "css/mystyles.css",
        "css/jquery-ui.css"
      ],
      "js": [
        "js/jquery-3.3.1.min.js",
        "js/jquery-ui.js",
        "js/qrcode.js",
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "activeTab",
    "storage",
    "*://*.kuaishou.com/"
  ],
  "web_accessible_resources": [
    "js/jquery-3.3.1.min.js",
    "js/content.js",
    "css/mystyles.css"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{8eded2b1-71ba-405a-ae13-55ae2a5db2c6}"
    }
  }
}