Created
February 21, 2017 03:27
-
-
Save JosiasSena/346fc48ba199567d7c329d8479b81af0 to your computer and use it in GitHub Desktop.
Hides suspended applications from the Developer Play Console. See http://josiassena.com/how-to-hide-suspended-applications-from-the-googles-play-developer-console/
This file contains hidden or 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 Hide suspended apps | |
// @namespace josiassena.com | |
// @version 1.0 | |
// @description Hide suspended applications | |
// @author Josias Sena | |
// @match https://play.google.com/apps/publish/?dev_acc=* | |
// @require http://code.jquery.com/jquery-latest.js | |
// @grant none | |
// ==/UserScript== | |
var checkExist = setInterval(function() { | |
$('tbody > tr > td:nth-child(7):contains("Suspended")').parent().remove(); | |
}, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I updated the script to work with the latest version. See https://gist.github.com/pperle/06869c71af5a3ba5e57ab1540120f1c6