顯示PTT樓層

此套件可以顯示PTT網頁版的樓層,方便閱讀

目前為 2024-04-07 提交的版本,檢視 最新版本

// ==UserScript==
// @name         顯示PTT樓層
// @namespace    https://www.ptt.cc/
// @version      1.0
// @description  此套件可以顯示PTT網頁版的樓層,方便閱讀
// @author       Anisile
// @match        https://www.ptt.cc/bbs*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=ptt.cc
// @license      GPL
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const items = document.querySelectorAll(".push");

    var i = 1;
    items.forEach((item) => {
        const child = document.createElement ("span");
        child.innerHTML = `${i}樓`.padStart (6, " ");
        child.style.float = "right";
        item.insertBefore (child, item.lastChild);
        i++;
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址