您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add floor number to Ptt's pushes
- // ==UserScript==
- // @name Ptt Add Push Floor
- // @namespace https://wiki.gslin.org/wiki/Ptt_Add_Push_Floor
- // @version 0.20241121.0
- // @description Add floor number to Ptt's pushes
- // @author Gea-Suan Lin <darkkiller@gmail.com>
- // @match https://www.ptt.cc/bbs/*
- // @match https://www.ptt.cc/man/*
- // @grant none
- // @license MIT
- // ==/UserScript==
- (function() {
- 'use strict';
- let n = 1;
- for (const el of document.getElementsByClassName('push')) {
- let floor = document.createElement('span');
- floor.setAttribute('style', 'color: gray; float: right; text-align: right; width: 2.5em;');
- floor.innerHTML = `${n}F`;
- n++;
- el.lastChild?.insertAdjacentElement('beforebegin', floor);
- }
- })();