Orange Free Wifi Auto Connect

Get tired of manually connecting to the Orange Wifi everytime? Try this automation script!

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Orange Free Wifi Auto Connect
// @namespace    http://tampermonkey.net/
// @version      0.1.3
// @description  Get tired of manually connecting to the Orange Wifi everytime? Try this automation script!
// @author       Shaokun XIE
// @match        https://hautdebit-mobile.orange.fr/order/customer/index/
// @match        https://hautdebitmobile.orange.fr:8443/home*
// @icon         https://www.google.com/s2/favicons?domain=orange.fr
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const login = document.querySelector(".mwf_bt_orange");
    const lastName = document.getElementById("customer-lastname");
    const firstName = document.getElementById("customer-firstname");
    const email = document.getElementById("customer-email");
    const legal = document.getElementById("legal-checkbox");
    const form = document.getElementById("customer-info-form");

    if (login) {
        login.click();
    } else if (form) {
        lastName.value = "abc";
        firstName.value = "abc";
        email.value = "[email protected]";
        legal.checked = true;
        form.submit.click();
    }

})();