Neodice Remove Particles

Removes particles from the Neodice.ga background

当前为 2015-09-27 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Neodice Remove Particles
  3. // @namespace http://neodice.ga/
  4. // @version 0.1
  5. // @description Removes particles from the Neodice.ga background
  6. // @author smeagol
  7. // @match http://neodice.ga/
  8. // @grant none
  9. // @copyright 2015+, smeagol
  10. // @require http://code.jquery.com/jquery-latest.min.js
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. $(document).ready(function() {
  15. $('.particles-js-canvas-el').css('display', 'none');
  16. });