Skip to content

Instantly share code, notes, and snippets.

@pperle
Created August 13, 2017 11:04
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 pperle/06869c71af5a3ba5e57ab1540120f1c6 to your computer and use it in GitHub Desktop.
Save pperle/06869c71af5a3ba5e57ab1540120f1c6 to your computer and use it in GitHub Desktop.
// ==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