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
| <script type="text/javascript"> | |
| const selector = '.AffiliateBadgeUi-sc-wzepun-0.eLxzBA'; | |
| const observer = new MutationObserver(mutations => { | |
| mutations.forEach(mutation => { | |
| if (mutation.addedNodes) { | |
| mutation.addedNodes.forEach(node => { | |
| if ((node.nodeType === Node.ELEMENT_NODE) && node.querySelector(selector)) { | |
| node.querySelector(selector).style.display = 'none'; | |
| } | |
| }); |
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
| #!/bin/bash | |
| # Agent OS Helper Script | |
| # This script is a wrapper for running various Agent OS commands | |
| # Created by Tomas Lehuta <[email protected]> | |
| # Installation: curl -sSL https://is.gd/pOUyX4 | bash -s setup | |
| echo "" | |
| echo "⚙️ Agent OS Helper" | |
| echo "==================" |