您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Отображение погоды на главной странице форума
当前为
// ==UserScript== // @name LztWeatherApi // @namespace http://tampermonkey.net/ // @version 0.1 // @description Отображение погоды на главной странице форума // @author vuchaev2015 // @match https://zelenka.guru/ // @icon https://www.google.com/s2/favicons?sz=64&domain=zelenka.guru // @grant none // ==/UserScript== const apiKey = "3a068cfd15014c20b75173452232307"; let city = ""; fetch('https://ipwho.is/') .then(response => response.json()) .then(data => { city = data.city.replace(/'/g, ""); // Get weather data for city const url = `https://api.weatherapi.com/v1/current.json?key=${apiKey}&q=${city}`; fetch(url) .then(response => response.json()) .then(data => { let text = `Город: ${city}<br>`; const h = data.current; if ('temp_c' in h) { text += `Температура: ${h['temp_c']} °C<br>`; } if ('feelslike_c' in h) { text += `Ощущается как: ${h['feelslike_c']} °C<br>`; } if ('humidity' in h) { text += `Влажность: ${h['humidity']} %<br>`; } if ('pressure_mb' in h) { text += `Давление: ${h['pressure_mb']} мб<br>`; } if ('wind_kph' in h) { text += `Скорость ветра: ${h['wind_kph']} км/ч<br>`; } if ('vis_km' in h) { text += `Видимость: ${h['vis_km']} км<br>`; } console.log(text); const weatherContainer = document.querySelector("#content > div > div > aside > div > div:nth-child(2)"); weatherContainer.innerHTML = `<div class="secondaryContent"> <span class="muted">Погода</span> <div id="avatar-plus-nick-status"> <a href="pelmeni2023/" class="avatar Av302690s" data-avatarhtml="true"></a> <div></div> </div> <div class="mn-15-0-0">${text}</div> <a class="mn-15-0-0 button primary block" href="https://api.weatherapi.com/v1/current.json?key=${apiKey}&q=${city}">Получить Json</a> </div>`; }); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址