Hacking with Swift Cleanup

Remove sections that clutter the website

当前为 2016-05-23 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Hacking with Swift Cleanup
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Remove sections that clutter the website
  6. // @author iczman
  7. // @match https://*.hackingwithswift.com/*
  8. // @grant none
  9. // @require http://code.jquery.com/jquery-latest.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. $("#latestTutorial").remove();
  16. })();