Craete Logs
当前为
// ==UserScript==
// @name Logger
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Craete 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.");
}
})();