Metacritic TBD Remover

Removes unreviewed games from Metacritic's new release lists

当前为 2020-07-12 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Metacritic TBD Remover
  3. // @description Removes unreviewed games from Metacritic's new release lists
  4. // @version 0.2
  5. // @author mica
  6. // @namespace greasyfork.org/users/12559
  7. // @match https://www.metacritic.com/browse/games/release-date/new-releases/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. $('div[class="metascore_w large game tbd"]').closest('tr').next('tr[class="spacer"]').andSelf().remove();