讓 PChome 股市的網頁停止自動更新
当前为
// ==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);