解决旧版浏览器github不能能点击授权按钮的问题
目前為
// ==UserScript==
// @name github助手
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 解决旧版浏览器github不能能点击授权按钮的问题
// @author peasshoter
// @include https://github.com/login/oauth/*
// @match https://greasyfork.org/zh-CN/scripts/370798/versions/new
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('.btn-danger').click();
$('#js-oauth-authorize-btn').removeAttribute("disabled");
})();