RLTracker - Hide "Data can be inaccurate" error message in modal

Hide the "Please be aware that this Data can be inaccurate." message when viewing current rating modal.

当前为 2017-03-15 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name RLTracker - Hide "Data can be inaccurate" error message in modal
  3. // @namespace http://tampermonkey.net/
  4. // @author Mato
  5. // @version 1.0.1
  6. // @description Hide the "Please be aware that this Data can be inaccurate." message when viewing current rating modal.
  7. // @match http://rltracker.pro/*
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. GM_addStyle(".modal-body .alert.alert-danger { display: none !important; }");
  15. })();