您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically opens the preview slider for all items.
当前为
// ==UserScript== // @id FeedlyautopreviewmodMod // @name Feedly Autopreview All Items // @version 1.0.2 // @description Automatically opens the preview slider for all items. // @include http://feedly.com/* // @include https://feedly.com/* // @namespace https://gf.qytechs.cn/users/4819 // ==/UserScript== function transformAnchors() { //get every anchor node var anchornodes = document.getElementsByTagName("div"); //transform every anchor for (var i=0; i<anchornodes.length; ++i){ //grab the current anchor node anchornode = anchornodes[i]; //ignore erroneous nodes with no parent if (anchornode.getAttribute("class") == "u5Entry ") { anchornode.setAttribute("data-page-entry-action", "previewEntry"); } if (anchornode.getAttribute("class") == "u5Entry quicklisted") { anchornode.setAttribute("data-page-entry-action", "previewEntry"); } } } document.addEventListener("DOMNodeInserted", transformAnchors, true);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址