您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fixar o botão "Next" na tela enquanto você rola a página no site flowermanga.net
// ==UserScript== // @name Fixar botão Next no Flowermanga // @namespace http://tampermonkey.net/ // @version 1.0 // @description Fixar o botão "Next" na tela enquanto você rola a página no site flowermanga.net // @match https://flowermanga.net/manga/* // @icon https://flowermanga.net/favicon.ico // @grant none // ==/UserScript== (function() { 'use strict'; // Esperar o carregamento da página window.addEventListener('load', function() { const nextBtn = document.querySelector('a.next_page'); if (nextBtn) { // Clonar botão para evitar conflitos const fixedBtn = nextBtn.cloneNode(true); // Estilo fixo no canto inferior direito fixedBtn.style.position = 'fixed'; fixedBtn.style.bottom = '20px'; fixedBtn.style.right = '20px'; fixedBtn.style.zIndex = '9999'; fixedBtn.style.padding = '10px 20px'; fixedBtn.style.backgroundColor = '#e91e63'; fixedBtn.style.color = '#fff'; fixedBtn.style.fontWeight = 'bold'; fixedBtn.style.borderRadius = '8px'; fixedBtn.style.boxShadow = '0 4px 10px rgba(0,0,0,0.3)'; fixedBtn.style.textDecoration = 'none'; // Adiciona o botão fixo à tela document.body.appendChild(fixedBtn); } }, false); })();