在您安装前,Greasy Fork 希望您知道此脚本包含可能不受欢迎的功能,也许会帮助脚本作者获利,而不能给你带来任何收益。
你只有在付费后才能使用脚本的全部功能。Greasy Fork 未参与到支付的流程,因此无法验证您是否获得了有价值的东西,亦无法帮助您申请退款。
脚本作者的说明:
主脚本(Reading mode for mobile)为付费脚本
【这是 Reading mode for mobile 的功能插件,无法单独工作】使主按钮的位置在右上角显示
// ==UserScript== // @name [RMFM addons]主按钮在右上角 // @namespace RMFM_main_button_right_top // @version 0.0.1 // @description 【这是 Reading mode for mobile 的功能插件,无法单独工作】使主按钮的位置在右上角显示 // @author 稻米鼠 // @icon https://i.v2ex.co/UuYzTkNus.png // @supportURL https://meta.appinn.net/t/23292 // @contributionURL https://afdian.net/@daomishu // @contributionAmount 8.88 // @antifeature payment 主脚本(Reading mode for mobile)为付费脚本 // @match *://*/* // @grant none // ==/UserScript== const opt = window.RMFM ? window.RMFM : window.RMFM={} const addons = (opt.addons && opt.addons instanceof Array) ? opt.addons : opt.addons=[] addons.push({ name: 'Main button right top', buttonStyle: `#rmfm-main-button { left: initial; top: 24px; right: 24px; bottom: initial; }` })