appleAcount

注册日本地区appleid

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         appleAcount
// @namespace    http://tampermonkey.net/
// @version      0.0.1
// @description  注册日本地区appleid
// @author       LYH
// @include      https://appleid.apple.com/account/manage
// @grant        unsafeWindow
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    window.setTimeout(function(){
        let button = document.querySelector('.not-mobile .button-link-reset-alignment')
        button.addEventListener('click',function(){
            let maileCode = document.querySelector('.idms-address-postal-code .idms-address-postal-code')
            if(!maileCode){
            console.log("请点击添加付款方式")
            }else{
                maileCode.value = "103-0014"
                let address = document.querySelector(".idms-address-state-province")
                address.value = "東京都"
                let city = document.querySelector(".form-element .idms-address-city")
                city.value = "中央区"
                let jiedao = document.querySelector(".idms-address-line1")
                jiedao = "日本橋蛎殻町"
                let louhao = document.querySelector(".idms-address-line2")
                louhao = "04-45-45"
                let quhao = document.querySelector(".payment-phonenumber-areaCode")
                quhao = "81"
                let tell = document.querySelector(".payment-phonenumber-number")
                tell = "332496226"
                let save = document.querySelector(".acdn-btn-save")
            }
        })
        button.style.border = "4px solid red"
    },5000)
})();