Greasy Fork

Greasy Fork is available in English.

OKEX行情列表添加币种种类

币币的币种种类

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

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

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         OKEX行情列表添加币种种类
// @namespace    http://greasyfork.icu/zh-CN/users/177458-bd777
// @version      0.3
// @description  币币的币种种类
// @author       windeng
// @match        https://www.okex.com/markets/spot-list
// @icon         https://www.google.com/s2/favicons?domain=okex.com
// @require      http://greasyfork.icu/scripts/433586-simpletools/code/SimpleTools.js?version=977251
// @grant        GM_xmlhttpRequest
// @grant        GM_setValue
// @grant        GM_getValue
// ==/UserScript==

function showToast(msg, doNotFade) {
  let width = 300
  let left = document.body.clientWidth / 2 - width / 2
  let style = `position: fixed; left: ${left}px; top: 80px; width: ${width}px; text-align: center; background-color: rgba(255, 255, 255, 0.9); z-index: 99; padding: 10px 20px; border-radius: 5px; color: #222; box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2); font-weight: bold;`

  let span = document.createElement('span')
  span.setAttribute('style', style)
  span.innerText = msg
  document.body.appendChild(span)
  if (!doNotFade) {
    setTimeout(() => {
      document.body.removeChild(span)
    }, 5000)
  }
}

function Get(url, opt = {}) {
  Object.assign(opt, {
    method: 'GET'
  })
  return Request(url, opt)
}

function Post(url, opt = {}) {
  Object.assign(opt, {
    method: 'POST'
  })
  return Request(url, opt)
}

async function getFeeCurrencies() {
  const now = parseInt(new Date().getTime())
  const url = `https://www.okex.com/v2/spot/fee/fee-currencies?t=${now}`
  return Get(url)
}

async function main() {
  await WaitUntil(() => {
    return !!document.querySelector('div.market-table-container')
  })

  let data = await getFeeCurrencies()
  console.log('currencies', data)

  let getCurrencyType = (currency) => {
    if (data.data.feeClass[0].indexOf(currency) != -1) return ['1', '#bf2424']
    else if (data.data.feeClass[1].indexOf(currency) != -1) return ['2', '#00b179']
    else if (data.data.feeClass[2].indexOf(currency) != -1) return ['3', '#F5BD00']
    else return ['-', '#888']
  }

  let trList = document.querySelectorAll('tr[data-id]')
  for (let tr of trList) {
    const symbol = tr.getAttribute('data-id')
    const currency = symbol.split('-')[0]
    const [typeName, color] = getCurrencyType(currency)
    let div = tr.querySelector('td:first-of-type > div.coin-info')
    let span = document.createElement('span')
    span.innerText = typeName
    span.setAttribute('style', `font-size: 0.7em;color: ${color};margin-left: 5px;font-family: consola;border: 2px solid ${color};padding: 0 5px;border-radius: 100%;font-weight: bold;`)
    div.appendChild(span)
  }
}


(function () {
  'use strict';

  // Your code here...
  main()
})();