Examine source code of BABI 飞书表格填报小助手

Inspect and view changes in BABI 飞书表格填报小助手 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": "BABI 飞书表格填报小助手",
  "version": "1.5",
  "description": "BABI 飞书表格填报小助手",
  "action": {
    "default_icon": {
      "16": "assets/icons/16.png",
      "24": "assets/icons/24.png",
      "32": "assets/icons/32.png"
    },
    "default_title": "Tooltip title",
    "default_popup": "pages/popup/index.html"
  },
  "icons": {
    "48": "assets/icons/48.png",
    "64": "assets/icons/64.png",
    "128": "assets/icons/128.png",
    "256": "assets/icons/256.png"
  },
  "permissions": [
    "webRequest",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://*.larkoffice.com/*",
    "https://babi.bytedance.net/*",
    "https://babi-pre.bytedance.net/*",
    "https://babi.boe.bytedance.net/*",
    "http://babi-test.bytedance.net/*",
    "https://cloud.bytedance.net/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://bytedance.larkoffice.com/sheets/*"
      ],
      "js": [
        "scripts/import-content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*-*.js",
        "scripts/content-script.js"
      ],
      "matches": [
        "https://bytedance.larkoffice.com/*",
        "https://*.larkoffice.com/*",
        "https://babi.bytedance.net/*",
        "https://babi-pre.bytedance.net/*",
        "https://babi.boe.bytedance.net/*",
        "http://babi-test.bytedance.net/*",
        "https://cloud.bytedance.net/*"
      ]
    }
  ]
}