Greasy Fork is available in English.

自动化微博登陆

使用微博登陆时不自动关注对方微博/自动点击提交

// ==UserScript==
// @name         自动化微博登陆
// @version      0.1
// @description  使用微博登陆时不自动关注对方微博/自动点击提交
// @author       Alex_NKG
// @match        https://api.weibo.com/oauth2/authorize
// @grant        none
// @namespace https://greasyfork.org/users/661051
// ==/UserScript==

(function() {
    'use strict';
    document.getElementById("follow_app_official_microblog").checked="";
    document.getElementsByClassName("WB_btn_allow formbtn_01")[0].click();

})();