Skip to content

Instantly share code, notes, and snippets.

@JosiasSena
Created February 21, 2017 03:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JosiasSena/346fc48ba199567d7c329d8479b81af0 to your computer and use it in GitHub Desktop.
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/
// ==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);
@pperle
Copy link

pperle commented Aug 13, 2017

I updated the script to work with the latest version. See https://gist.github.com/pperle/06869c71af5a3ba5e57ab1540120f1c6

@JosiasSena
Copy link
Author

@pperle awesome, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment