您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Moves the comment box at the bottom of a comment thread to the top of the page.
// ==UserScript== // @name Kbin: Move comment box to top // @match https://kbin.social/* // @match https://fedia.io/* // @match https://karab.in/* // @version 1.0 // @description Moves the comment box at the bottom of a comment thread to the top of the page. // @author Timwi // @namespace https://greasyfork.org/en/users/1098822-timwi // @icon https://www.google.com/s2/favicons?sz=64&domain=kbin.social // @license MIT // ==/UserScript== (function () { "use strict"; // Find the comment-add box var commentAdd = document.getElementById('comment-add'); // Move it up var insertBef = document.getElementById('options'); insertBef.parentNode.insertBefore(commentAdd, insertBef); })();