您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically inject the latest version of Ruffle into any webpage.
当前为
// @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT /* eslint-env browser, greasemonkey */ /* jshint asi: true, esversion: 11 */ // ==UserScript== // @name RuffleInjector // @name:de RuffleInjector // @name:en RuffleInjector // @namespace TheLastZombie/userscripts // @version 1.0.1 // @description Automatically inject the latest version of Ruffle into any webpage. // @description:de Bindet die neueste Ruffle-Version automatisch in jede Webseite ein. // @description:en Automatically inject the latest version of Ruffle into any webpage. // @compatible chrome // @compatible edge // @compatible firefox // @compatible opera // @compatible safari // @homepageURL https://thelastzombie.github.io/userscripts/ // @supportURL https://github.com/TheLastZombie/userscripts/issues/new?labels=RuffleInjector // @contributionURL https://ko-fi.com/rcrsch // @contributionAmount €1.00 // @author TheLastZombie <[email protected]> // @include *://*/* // @match *://*/* // @run-at document-end // @inject-into auto // @grant none // @noframes // @require https://unpkg.com/@ruffle-rs/ruffle // @icon https://thelastzombie.github.io/userscripts/icons/RuffleInjector.png // @copyright 2022, TheLastZombie (https://eric.jetzt/) // @license MIT; https://thelastzombie.github.io/userscripts/LICENSE // ==/UserScript== // ==OpenUserJS== // @author TheLastZombie // ==/OpenUserJS== (function () { "use strict"; window.RufflePlayer.config = { publicPath: "https://unpkg.com/@ruffle-rs/ruffle", }; })(); // @license-end