ACGN-Stock股票事件監聽

監聽ACGN網頁變化並給予Addevent

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greasyfork.org/scripts/33945/223014/ACGN-Stock%E8%82%A1%E7%A5%A8%E4%BA%8B%E4%BB%B6%E7%9B%A3%E8%81%BD.js

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Author
Zoosewu
Version
0.003
Created
2017-10-09
Updated
2017-10-10
Size
3.6 KB
License
N/A

本腳本僅供開發者使用,功能為監聽網頁變化並呼叫註冊的Callback
使用範例


(function(){
console.log("ACGN-Stock股票事件監聽");

//新增監聽
ACGNListener.AddCompanyListener(function(){console.log("AddCompanyListener");});
ACGNListener.AddStockSummaryListener(function(){console.log("AddStockSummaryListener");});
ACGNListener.AddAccountInfoListener(function(){console.log("AddAccountInfoListener");});
ACGNListener.AddFoundationListener(function(){console.log("AddFoundationListener");});

//註冊客製化事件,輸入網址辨識片段
let seasonalReportEventindex = ACGNListener.AddCutsomEvent(new BaseEvent(/seasonalReport/));
//新增客製化事件監聽
ACGNListener.AddCutsomListener(seasonalReportEventindex, function(){console.log("AddSeasonalReportListener");});
})();