github助手

解决旧版浏览器github不能能点击授权按钮的问题

目前為 2019-08-02 提交的版本,檢視 最新版本

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

})();