您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Press CTRL+SHIFT+S to sync all wallets.
// ==UserScript== // @name Sync Koinly Wallets // @namespace http://tampermonkey.net/ // @version 0.2 // @description Press CTRL+SHIFT+S to sync all wallets. // @author You // @match https://app.koinly.io/p/wallets // @icon https://www.google.com/s2/favicons?domain=koinly.io // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; const cl = console.log document.addEventListener('keydown', event => { if (event.ctrlKey && event.shiftKey && event.code === 'KeyS') { syncWallets() } }); async function syncWallets () { const $table = document.querySelector('.wallets-table') const $syncBtns = $table.querySelectorAll('.wallet-well-more button') for (const $btn of $syncBtns) { if ($btn.innerText.includes('Sync')) { $btn.click() } } } })();