您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
一个让楼主玩贴吧格外开心的工具 OwO
当前为
// ==UserScript== // @name 楼主你玩贴吧开心吗? // @namespace 荆棘的思念 // @description 一个让楼主玩贴吧格外开心的工具 OwO // @include *tieba.baidu.com/*fuck=true* // @include *tieba.baidu.com/*error* // @version 1 // @grant none // ==/UserScript== console.log('script strat!'); $(document).ready(function () { var $ = window.jQuery; $('html, body').animate({ scrollTop: $(document).height() }, 1000); setTimeout(function () { setTimeout(function () { if (/error/.test(location.href)) location.href = document.referrer; else location.reload(); }, 3000); var x = $('#ueditor_replace'); var input = x.children('p'); var submit = $('a.poster_submit'); input.html(location.hash || '楼主你玩贴吧开心吗?'); submit.click(); }, 10000); });