reddit r/pathofexile ggg filter

Allows you to filter comments by ggg employees on r/pathofexile

目前为 2015-07-06 提交的版本。查看 最新版本

// ==UserScript==
// @name         reddit r/pathofexile ggg filter
// @namespace    http://porath.org/
// @version      0.1
// @description  Allows you to filter comments by ggg employees on r/pathofexile
// @author       porath
// @include      *.reddit.com/r/pathofexile*
// @require		 http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js
// @grant        none
// ==/UserScript==

$('.linkflairlabel').on('click', function () {
    $('.entry > p > em').each(function () {
        $(this).siblings('.expand').click();
    });
    
    var GGGEmployees = ['chris_wilson', 'Bex_GGG', 'Negitivefrags', 'qarldev', 'BrianWeissman_GGG', 'Rory_Rackham', 'Omnitect', 'Mark_GGG', 'Daniel_GGG', 'Blake_GGG'];
    
    $('.entry > p > .author').each(function () {
        if (GGGEmployees.indexOf($(this).html()) !== -1) {
            $(this).closest('.nestedlisting').prepend($(this).parents('.nestedlisting > .thing'));
        }
    });
});

QingJ © 2025

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