Autodarts - Remove AVG

Removes the AVG in a running game

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
  1. // ==UserScript==
  2. // @name Autodarts - Remove AVG
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Removes the AVG in a running game
  6. // @author benebelter / MartinHH
  7. // @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
  8. // @match https://play.autodarts.io/*
  9. // @grant GM_addStyle
  10. // @run-at document-end
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. GM_addStyle(".css-1j0bqop { visibility: hidden;}");
  17. })();