您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically opens the preview slider for all items.
当前为
// ==UserScript== // @id FeedlyautopreviewmodMod // @name Feedly Autopreview All Items // @version 1.0.0 // @grant GM_addStyle // @description Automatically opens the preview slider for all items. // @include http://feedly.com/* // @include https://feedly.com/* // @run-at document-end // @namespace https://gf.qytechs.cn/users/4819 // ==/UserScript== var autopreviewmod = function () { this.initialize.apply(this, arguments); } autopreviewmod.prototype = { initialize:function () { } ,autopreview:function (item) { var itemid = item.id.replace(/^([^=]+).*$/, "$1"); item.setAttribute("data-page-entry-action", "previewEntry"); } }; mo = new MutationObserver(function (mutations) { var autopreviewmodObj = new autopreviewmod(); mutations.forEach(function (mutation) { Array.prototype.slice.call(mutation.addedNodes).forEach(function (node) { if (node.tagName=="DIV" && (node.className=="u0Entry " || node.className=="u1Entry " || node.className=="u2Entry " || node.className=="u3Entry " || node.className=="u4Entry " || node.className=="u5Entry ")) { autopreviewmodObj.autopreview(node); }; }); }); }); mo.observe(document.getElementById("box"), {childList:true, subtree:true});
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址