Git Product home page Git Product logo

auto-job's Introduction

Auto Job

boss直聘自动打招呼油猴脚本

支持以 搜索框推荐职位 作为打招呼入口

原理

模拟用户点击行为,查找符合的职位自动打招呼,通过设置时间间隔来避免被系统判定为机器人,安全可靠

截止至 2023/10/7 20:48:52 仍可正常使用

使用

  1. 安装 Tampermonkey
  2. 前往 Greasy Fork 下载 插件
  3. 先关闭脚本,打开 Boss直聘,登录 Boss直聘,然后配置好脚本参数(参数在源码中修改),运行脚本

配置参数

/*
    修改该配置即可限定打招呼对象
*/
const config = {
    /**
     * 设置职位入口,可选值 0, 1, 2
     * 0 为以 搜索框搜索 作为职位入口
     * 1 为以 推荐职位——精选职位 作为职位入口
     * 2 为以 推荐职位——最新职位 作为职位入口
     * 
     * 设置三个入口是原因三个入口的职位都不太一样,避免漏了一些职位可以尝试切换入口
     */
    mode: 2,
    /**
     * 目标城市,
     * mode 为 1 或 2 时需要事先设置求职意向为目标城市,否则不生效
     */
    city: '深圳',
    /**
     * 职位关键词
     * mode 为 0 时作为搜索框的关键词键入
     * mode 为 1 或 2 时作为职位列表项中的职位名称匹配(这是因为推荐的职位不是很准确,比如偶尔会出现 “安卓工程师” 之类的职位,这时就需要通过关键词去过滤不匹配的职位)
     */
    keyword: '前端',
    /**
     * 职位名称要排除的关键字,比如 '高级前端工程师' 将会比排除在外
     */
    excludeKeywords: ['高级', '资深', '驻场', '外派', '安卓'],
    /**
     * 是否接受外地职位(职位列表有时会出现外地职位)
     */
    otherPlace: false,
    /**
     * 活跃度,匹配中的才会打招呼
     */
    liveness: ['在线', '刚刚活跃', '今日活跃', '3日内活跃'],
    /**
     * 要排除的公司名
     */
    excludes: ['中软国际', '德科', '睿服'],
    /**
     * 每次访问的最小间隔,防止操作过快被系统判定为机器人,单位秒
     */
    min: 3,
    /**
     * 每次访问的最大间隔,防止操作过快被系统判定为机器人,单位秒
     */
    max: 6,
    /**
     * 打招呼语
     */
    message: '您好,我正在找前端开发的工作,希望有机会与贵司进一步交流',
    /**
     * 工作年限,可多选
     * 经验不限     101
     * 应届生       102
     * 1年以内      103
     * 1-3年        104
     * 3-5年        105
     * 5-10年        106
     * 10年以上       107
     * 在校生          108
     */
    experience: [101, 103, 104, 105],
    /**
     * 薪资待遇,数字类型
     * 3K 以下      402
     * 3-5K         403
     * 5-10K        404
     * 10-20K       405
     * 20-50K       406
     * 50K以上      407
     * 
     * 自定义   [min, max] min表示最小值,max表示最大值,单位 K,如 salary: [13, 15] 表示 13-15K
     */
    salary: [],
    /**
     * 公司规模
     * 0-20人       301
     * 20-99人      302
     * 100-499人    303
     * 500-999人    304
     * 1000-9999人  305
     * 10000人以上  306
     */
    scale: [],
    /**
     * 学历要求
     * 大专 202
     * 本科 203
     * 硕士 204
     * 博士 205
     * 高中 206
     * 中专 208
     * 初中 209
     */
    degree: [],
}

注意

使用脚本前请先关闭Boss直聘中的自动打招呼语

auto-job's People

Contributors

18023785187 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.