This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Tweet */ | |
| div.tweet:has( | |
| /* Disable tweets with crypto/nft tags */ | |
| a[href^="/search?q=%24"], a[href^="/hashtag/BTC"], a[href^="/hashtag/ETH"], a[href^="/hashtag/btc"], | |
| a[href="/hashtag/eth"], a[href^="/hashtag/Bitcoin"], a[href^="/hashtag/Btc"], a[href="/hashtag/Eth"], | |
| a[href^="/hashtag/Etherium"], a[href^="/hashtag/etherium"], a[href^="/hashtag/BITCOIN"], a[href^="/hashtag/ETHERIUM"], | |
| a[href^="/hashtag/Altcoins"], a[href^="/hashtag/Altcoin"], a[href^="/hashtag/altcoins"], a[href^="/hashtag/altcoin"], | |
| a[href="/hashtag/xrp"], a[href="/hashtag/XRP"], a[href="/hashtag/Xrp"], a[href^="/hashtag/Crypto"], | |
| a[href^="/hashtag/crypto"], a[href^="/hashtag/CRYPTO"], a[href^="/hashtag/nft"], a[href^="/hashtag/Nft"], | |
| a[href^="/hashtag/NFT"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** _changeLatency(days) to change your latency */ | |
| window._changeLatency = await (async () => { | |
| const NONCE_SHIFT = 14200704e5, | |
| SHOULD_MANIPULATE_SYMBOL = Symbol("should manipulate?"), | |
| ORIGINAL_NONCE_SYMBOL = Symbol("original nonce") | |
| const fromNonce = val => Math.floor(Number(val) / 4194304) + NONCE_SHIFT | |
| const toNonce = val => { | |
| let t = val - NONCE_SHIFT; | |
| return t <= 0 ? "0" : (BigInt(t) << 22n).toString() |
NewerOlder