BOSS直聘批量沟通

BOSS直聘批量沟通

BOSS直聘批量沟通消息,为您的海投节约时间

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BOSS直聘批量沟通",
  "description": "BOSS直聘批量沟通消息,为您的海投节约时间",
  "version": "1.0.0",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_popup": "action/index.html",
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.zhipin.com/*"
      ],
      "js": [
        "content/index.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "matches": [
      "*://*.zhipin.com/*"
    ],
    "service_worker": "background/index.js"
  },
  "permissions": [
    "scripting",
    "tabs",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "*://*.zhipin.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "content/*.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}