您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
For read the news
// ==UserScript== // @name News in sidebar by Volca780 // @namespace https://realitygaming.fr/* // @version 1.0 // @description For read the news // @author Volca780 // @match https://realitygaming.fr/* // @grant none // ==/UserScript== $.ajax({ type: "GET", url: "https://realitygaming.fr/forums/-/index.rss", dataType: "xml", success: function(xml){ $('<div class="section"><div class="secondaryContent"><h3>Nouveaux posts</h3><div class="pairsJustified" id="news"></div></div>').appendTo('.sidebar'); $(xml).find('item').each(function(){ var title = $(this).find('title').text(), author = $(this).find('creator').text(), link = $(this).find('link').text(); $('#news').append('<span class="author"><b>'+ author +' :</b></span>'); $('#news').append('<span class="title"><a href="'+ link +'">'+ title +'</span></a><br />'); }); } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址