south+vimium

vimium 翻页

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         south+vimium
// @version      0.11.4
// @description  vimium 翻页
// @author       ayase
// @match        https://*.summer-plus.net/*
// @match        https://*.level-plus.net/*
// @match        https://*.white-plus.net/*
// @match        https://*.south-plus.net/*
// @match        https://*.imoutolove.me/*
// @match        https://summer-plus.net/*
// @match        https://level-plus.net/*
// @match        https://white-plus.net/*
// @match        https://south-plus.net/*
// @match        https://imoutolove.me/*
// @run-at document-end
// @namespace https://greasyfork.org/zh-CN/scripts/382722-page
// ==/UserScript==

(() => {
  const main = () => {
    const currPage = parseInt(
      document.querySelector(".pages b").textContent,
      10
    );
    const prePage = currPage === 1 ? 1 : currPage - 1;
    const nextPage = currPage + 1;


    for (const node of queryTextAll(".pages a", "»")) {
      const href = node.getAttribute("href");
      node.setAttribute("href", href.replace(/\bpage-\d+/i, `page-${nextPage}`));
    }

    for (const node of queryTextAll(".pages a", "«")) {
      const href = node.getAttribute("href");
      node.setAttribute("href", href.replace(/\bpage-\d+/i, `page-${prePage}`));
    }
  };



  /**
   * 选择所有包含指定字符串的节点
   * @param {string} selector
   * @param {string} text
   */
  const queryTextAll = (selector, text) => {
    const r = [];
    for (const node of Array.from(document.querySelectorAll(selector))) {
      if (node.textContent.includes(text)) {
        r.push(node);
      }
    }
    return r;
  };

  main();
})();