Auto Job Bot

try to auto apply jobs!

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Auto Job Bot
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  try to auto apply jobs!
// @author       Narender
// @include      https://au.neuvoo.com/view/?id=*
// @include      https://neuvoo.ca/view/?id=*
// @include      https://www.neuvoo.ca/view/?id=*
// @include      https://neuvoo.co.uk/view/?id=*
// @include      https://www.neuvoo.co.uk/view/?id=*
// @include      https://www.neuvoo.com/view/?id=*
// @include      https://neuvoo.com/view/?id=*
// @include      https://neuvoo.de/view/?id=*
// @include      https://www.neuvoo.de/view/?id=*
// @grant        none
// ==/UserScript==

/*jshint esversion: 6 */
(function() {
    'use strict';
    let apply_action = document.getElementById("apply-action");
    if (apply_action) {
        apply_action.click();
        setTimeout(()=> {
            let continue_skip = document.getElementById("continue-skip");
            if (continue_skip) {
                // leveraging an internal function on page
                skip_alert();
            }
        }, 1000);
//        let user_create_response_message = document.getElementById('user-create-response-message');
//        if (user_create_response_message) {
//        }
    }
})();