您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
FrankerFaceZ gives Twitch users custom chat emotes and introduces new features to improve the viewing experience.
// ==UserScript== // @id frankerfacez // @name FrankerFaceZ // @namespace FrankerFaceZ // // @version 1.58 // // @description FrankerFaceZ gives Twitch users custom chat emotes and introduces new features to improve the viewing experience. // @homepage https://www.frankerfacez.com/ // @icon https://cdn.frankerfacez.com/script/icon32.png // @icon64 https://cdn.frankerfacez.com/script/icon64.png // @icon128 https://cdn.frankerfacez.com/script/icon128.png // // @include http://twitch.tv/* // @include https://twitch.tv/* // @include http://*.twitch.tv/* // @include https://*.twitch.tv/* // // @exclude http://api.twitch.tv/* // @exclude https://api.twitch.tv/* // // @grant none // @run-at document-end // ==/UserScript== function ffz_init() { var script = document.createElement('script'); script.id = 'ffz_script'; script.type = 'text/javascript'; script.src = '//cdn.frankerfacez.com/script/script.min.js?_=' + Date.now(); if ( localStorage.ffzDebugMode == "true" ) { // Developer Mode is enabled. But is the server running? Check before // we include the script, otherwise someone could break their // experience and not be able to recover. var xhr = new XMLHttpRequest(); xhr.open("GET", "//localhost:8000/dev_server", true); xhr.onload = function(e) { var resp = JSON.parse(xhr.responseText); console.log("FFZ: Development Server is present. Version " + resp.version + " running from: " + resp.path); script.src = "//localhost:8000/script/script.js?_=" + Date.now(); document.body.classList.add("ffz-dev"); document.head.appendChild(script); }; xhr.onerror = function(e) { console.log("FFZ: Development Server is not present. Using CDN."); document.head.appendChild(script); }; return xhr.send(null); } document.head.appendChild(script); } ffz_init();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址