您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bring the upload date to the top of the screen since I always forget to check it before loading the next one
- // ==UserScript==
- // @name RoyalRoad Extra Upload Date Info
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description Bring the upload date to the top of the screen since I always forget to check it before loading the next one
- // @author You
- // @match https://www.royalroad.com/fiction/*/chapter/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=royalroad.com
- // @grant none
- // @run-at document-end
- // ==/UserScript==
- var timestamp = document.querySelector('.profile-info ul li').innerHTML;
- var navBar = document.querySelector('.nav-buttons');
- navBar.outerHTML += "<div style='text-align: center; margin-top: 10px;'>" + timestamp + "</div>";