Last active
December 29, 2020 20:00
-
-
Save thehowl/bad883282a676cefbcb2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Slack stats unveiler | |
// @namespace http://howl.moe/ | |
// @version 1.0 | |
// @description There's not much to see on the stats slack page if you're not on a slack paid plan. Let's get around it, because you *can* see more stats even if you did not pay for them! | |
// @author Howl | |
// @match http*://*.slack.com/admin/stats | |
// @grant none | |
// @updateURL https://gist.github.com/TheHowl/bad883282a676cefbcb2/raw/slack-stats-unveiler.user.js | |
// ==/UserScript== | |
$(document).ready(function() { | |
document.getElementById("stats_limited").remove(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment