Disable auto-refresh on PChome Stock

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

目前为 2017-05-01 提交的版本。查看 最新版本

// ==UserScript==
// @name         Disable auto-refresh on PChome Stock
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  讓 PChome 股市的網頁停止自動更新
// @author       Jian-Long Huang ([email protected])
// @match        http://pchome.megatime.com.tw/stock/*
// @grant        none
// ==/UserScript==

window.addEventListener('load', function() {
  console.log('Disable auto-refresh on PChome Stock');
  window.myrefresh = function() {};
}, false);