码云点击更新page按钮

为啥码云还要手动去点更新的???

// ==UserScript==
// @name         码云点击更新page按钮
// @namespace    https://xyw.baklib.com/
// @version      0.1.1
// @description  为啥码云还要手动去点更新的???
// @author       Silencer
// @match        *://gitee.com/*/pages
// @grant        none
// ==/UserScript==

onload = () => {
  $.ajax({
    url: location.href + "/rebuild",
    type: 'POST',
    data: {
      branch: $('#branch').val(),
      build_directory: $('#build_directory').val(),
      domain: $('#domain').val(),
      force_https: false
    }
  })
}