Greasy Fork is available in English.

appleAcount

注册日本地区appleid

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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)
})();