您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replaces "More discussions" link on anime entries with "All discussions" link
当前为
// ==UserScript== // @name MAL See All Discussions // @namespace http://greasyfork.org/users/5975 // @include /^http:\/\/myanimelist\.net\/anime(\.php\?id=|\/)\d+/ // @description Replaces "More discussions" link on anime entries with "All discussions" link // @version 1 // ==/UserScript== var moreDiscuss = document.evaluate("//a[contains(@href, '/anime/')][contains(@href, '/forum')][contains(., 'More discussions')]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); moreDiscuss.snapshotItem(0).href = "http://myanimelist.net/forum/?animeid=" + moreDiscuss.snapshotItem(0).href.match(/\/\/myanimelist.net\/anime\/([0-9]+)\//)[1]; moreDiscuss.snapshotItem(0).textContent = "All discussions";