MAL See All Discussions

Replaces "More discussions" link on anime entries with "All discussions" link

当前为 2015-07-22 提交的版本,查看 最新版本

// ==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";