Greasy Fork

Get Blocked Users

Get a list of your blocked users.

目前为 2016-05-08 提交的版本。查看 最新版本

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.icu/scripts/19498/124573/Get%20Blocked%20Users.js

// ==UserScript==
// @name         Get Blocked Users
// @namespace    PXgamer
// @version      0.6
// @description  Get a list of your blocked users.
// @author       PXgamer
// @grant        none
// ==/UserScript==

function gbu() {
    'use strict';

    var returnedData;
    var searchString = /<span class="aclColor_.*"><a class="plain" href="\/user\/.*\/">([a-z)-9_.-]+)<\/a>/gi, matches, blockedUsers = [];

    $.ajax({
        type: "GET",
        url: "/settings/privacy/",
        async: false,
        success: function (data) {
            returnedData = data;
            while (matches = searchString.exec(returnedData.html)) {
                blockedUsers.push(matches[1]);
            }
            console.log(blockedUsers);
        },
        returnData: "json"
    });
	return blockedUsers;
}