您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Sets your presence to online if offline at first load
// ==UserScript== // @name Twitch auto online presence // @namespace https://www.twitch.tv/ghryphen // @author Ghryphen // @version 1.0 // @match https://www.twitch.tv/* // @icon https://static.twitchcdn.net/assets/favicon-32-d6025c14e900565d6177.png // @description Sets your presence to online if offline at first load // ==/UserScript== (function() { 'use strict'; const GoOnline = () => { const avatarButton = document.querySelector('[data-a-target="user-menu-toggle"]'); if (avatarButton !== null) { avatarButton.click(); const onlineButton = document.querySelector('[data-a-target="online-dropdown-button"] label'); if (onlineButton !== null) { const onlineInput = document.getElementById(onlineButton.htmlFor); if (onlineInput.checked == false) { onlineButton.click(); console.log('Online button pressed'); } } avatarButton.click(); } }; setTimeout(GoOnline, 5000); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址