Add 100 Coins

Adds 100 coins to your balance

  1. // ==UserScript==
  2. // @name Add 100 Coins
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Adds 100 coins to your balance
  6. // @author You
  7. // @match https://bangvicro.github.io/link/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. function addCoins() {
  14. let coinElement = document.querySelector('#coin-count'); // Adjust selector if needed
  15. if (coinElement) {
  16. let currentCoins = parseInt(coinElement.textContent, 10) || 0;
  17. coinElement.textContent = currentCoins + 100;
  18. } else {
  19. console.warn('Coin element not found. Check the selector.');
  20. }
  21. }
  22. // Run the function
  23. addCoins();
  24. })();