Created
August 13, 2017 11:04
-
-
Save pperle/06869c71af5a3ba5e57ab1540120f1c6 to your computer and use it in GitHub Desktop.
Hides suspended and rejected applications from the Developer Play Console. Based on https://gist.github.com/josias1991/346fc48ba199567d7c329d8479b81af0 also 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 and rejected apps | |
// @namespace josiassena.com | |
// @version 1.1 | |
// @description Hide suspended and rejected applications | |
// @author Josias Sena & Pascal Perle | |
// @match https://play.google.com/apps/publish/* | |
// @require http://code.jquery.com/jquery-latest.js | |
// @grant none | |
// ==/UserScript== | |
var checkExist = setInterval(function() { | |
$('tbody > tr > td:contains("Suspended")').parent().remove(); | |
$('tbody > tr > td:contains("App rejected")').parent().remove(); | |
// german | |
$('tbody > tr > td:contains("Gesperrt")').parent().remove(); | |
$('tbody > tr > td:contains("App abgelehnt")').parent().remove(); | |
}, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment