自研 - BoBoPic - Pixiv 日榜文章直达链接

为「Pixiv 综合排行榜热门插画图片」类文章添加直达链接。

// ==UserScript==
// @name               自研 - BoBoPic - Pixiv 日榜文章直达链接
// @name:en_US         Self-made - BoBoPic - Pixiv Ranking articles Direct link
// @description        为「Pixiv 综合排行榜热门插画图片」类文章添加直达链接。
// @description:en_US  Put direct links in the 'Popular Illustration Images from the Pixiv Comprehensive Rankings' articles.
// @version            1.0.1
// @author             CPlayerCHN
// @license            MulanPSL-2.0
// @namespace          https://www.gitlink.org.cn/CPlayerCHN
// @match              https://bobopic.com/pixiv-*.html
// @icon               http://bobopic.com/favicon.ico
// @run-at             document-body
// @noframes
// ==/UserScript==

(function() {
    'use strict';

    // 调整样式
    GM_addStyle('.miebangbangda a { transition: unset !important }');

    // 定义「pid 容器」
    let span = document.querySelectorAll('.miebangbangda');

    // 为「pid 容器」添加链接
    span.forEach((elm) => {
        elm.innerHTML = `<a href="https://pixiv.net/artworks/${elm.textContent}" target="_blank" rel="nofollow noopener noreferrer">${elm.textContent}</a>`;
    })

})();