Disable auto-refresh on PChome Stock

讓 PChome 股市的網頁停止自動更新

当前为 2017-05-01 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Disable auto-refresh on PChome Stock
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description 讓 PChome 股市的網頁停止自動更新
  6. // @author Jian-Long Huang (huang@jianlong.org)
  7. // @match http://pchome.megatime.com.tw/stock/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. window.addEventListener('load', function() {
  12. console.log('Disable auto-refresh on PChome Stock');
  13. window.myrefresh = function() {};
  14. }, false);
  15.