hko banner remover

2/19/2020, 6:12:30 PM

目前為 2020-11-12 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name hko banner remover
  3. // @namespace Violentmonkey Scripts
  4. // @match http*://www.hko.gov.hk/tc/index.html
  5. // @match http*://www.hko.gov.hk/sc/index.html
  6. // @match http*://www.hko.gov.hk/en/index.html
  7. // @match http*://www.weather.gov.hk/tc/index.html
  8. // @match http*://www.weather.gov.hk/sc/index.html
  9. // @match http*://www.weather.gov.hk/en/index.html
  10. // @grant none
  11. // @version 1.1
  12. // @author -
  13. // @description 2/19/2020, 6:12:30 PM
  14. // ==/UserScript==
  15.  
  16.  
  17. (function() {
  18. 'use strict';
  19. try{
  20. $('a.flex-next').remove()
  21. $('a.flex-prev').remove()
  22. }catch(e) {}
  23. })();