Greasy Fork 支持简体中文。

Better etoro UI for Taiwan

提供你更好的 etoro 新台幣介面增強懶人包

目前為 2020-04-13 提交的版本,檢視 最新版本

        // ==UserScript==
        // @name          Better etoro UI for Taiwan
        // @description   提供你更好的 etoro 新台幣介面增強懶人包
        // @version       0.3
        // @author        hilezir
        // @grant         GM_xmlhttpRequest
        // @grant         GM_addStyle
        // @match         https://*.etoro.com/*
        // @match         https://etoro.com/*
        // @run-at        document-idle
        // @noframes
        // @namespace     http://tampermonkey.net/
        // ==/UserScript==

        window.GM_xmlhttpRequest({
          // url: 'https://127.0.0.1/etoro.bundle.js', // 開發模式
          url: 'https://cdn.jsdelivr.net/gh/hilezir/[email protected]/src_dist/etoro.bundle.js',
          onload: event => {
            eval(event.responseText)
          },
        })