Udacity review 全部通过插件

这个插件可以帮助你一键通过所有的批改意见。

目前為 2017-10-24 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Udacity review 全部通过插件
// @namespace    https://ypw.io
// @version      1.1
// @description  这个插件可以帮助你一键通过所有的批改意见。
// @author       YPW
// @include      https://review.udacity.com/*
// @grant        none
// ==/UserScript==

(function() {
    $(window).bind('hashchange', function(e) {
        var r = $('<button type="button" class="btn btn-default ng-binding" id="pass_all">全部通过</button>');
        $('section:nth-child(5) div:eq(0)').append(r);
        $('#pass_all').click(function() {
            $.map($('input[value=passed]'), function(x){x.click();});
            $.map($('button.btn-secondary'), function(x){x.click();});
        });
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址