Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Hide annoying TradingView things
// @namespace http://tampermonkey.net/
// @version 2024-08-31
// @description try to take over the world!
// @author vermi321
// @match https://www.tradingview.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=tradingview.com
// @grant none
// ==/UserScript==
(async () => {
if (!window.location.href.startsWith('https://debank.com/official-ranking')) {
alert('Navigate to the Official Account Ranking page');
return;
}
const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms));
const getUsernameEls = () => document.querySelectorAll('.db-table-body .List_officialName__1Mj63');
const getRowEls = () => document.querySelectorAll('.db-table-body .db-table-row');
// ==UserScript==
// @name Galxe complete basic tasks
// @namespace http://tampermonkey.net/
// @version 0.3
// @description try to take over the world!
// @author @vermi321
// @match https://*.galxe.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=galxe.com
// @run-at document-end
// @grant none
// ==UserScript==
// @name DeBank stealth mode
// @namespace http://tampermonkey.net/
// @version 0.7.0
// @description DeBank tools
// @author vermi321
// @match https://debank.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=debank.com
// @grant none
// ==/UserScript==
username sybil1 sybil2 sybil3 sybil4 sybil5 sybil6 sybil7 sybil8 sybil9 sybil10 sybil11 sybil12 sybil13 sybil14 sybil15 sybil16 sybil17 sybil18 sybil19 sybil20 sybil21 sybil22 sybil23 sybil24 sybil25 sybil26 sybil27 sybil28 sybil29 sybil30
a16z
an0n
Ethereum 0x2a3aaf3455499e0a7b9fae89bf19eab2ee0ac1ec
33EE
EverydayWhale
Powerstake
CZSamSun
DeFiWhale
TradFiWhale JakeAdlerETH
(async () => {
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms));
const getUsernameEls = () => document.querySelectorAll('.db-table-body .db-user-name');
const getRowEls = () => document.querySelectorAll('.db-table-body .db-table-row');
const goToPage = async page => {
document.querySelector(`.db-talbe-pagination li[title="${page}"]`).click();
await sleep(1000);
while (getUsernameEls().length === 0) {
await sleep(100);