自动投简历工具

辅助投递简历,功能:1. 自动填写文本输入框。 使用方法和其他具体信息见https://gitee.com/flower_moon_and_sword/auto_job_form
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": "自动投简历工具",
  "description": "辅助投递简历,功能:1. 自动填写文本输入框。\n使用方法和其他具体信息见https://gitee.com/flower_moon_and_sword/auto_job_form",
  "version": "0.0.5",
  "action": {
    "default_popup": "help.html",
    "default_icon": "images/icon128128.png"
  },
  "default_locale": "zh_CN",
  "options_page": "help.html",
  "icons": {
    "16": "images/icon1616.png",
    "32": "images/icon3232.png",
    "48": "images/icon4848.png",
    "128": "images/icon128128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/auto_fill_helper.js"
      ]
    }
  ]
}