Logger

Create Logs

// ==UserScript==
// @name          Logger
// @namespace     http://tampermonkey.net/
// @version       1.1
// @description   Create Logs
// @match         *://www.coingecko.com/en/coins/ethereum
// @grant         none
// @license MIT
// ==/UserScript==

(function() {
    const ethPriceElement = document.querySelector('span[data-converter-target="price"]');
    if (ethPriceElement) {
        console.log(`Ethereum (ETH) Price: ${ethPriceElement.innerText}`);
    } else {
        console.error("Ethereum price not found.");
    }
})();