// ==UserScript== // @name 页面文字翻转 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 页面文字翻转,文字镜像 // @author YourName // @match *://*/* // @grant none // ==/UserScript== (function() { 'use strict'; // 文字镜像 document.body.style.transform = 'scaleX(-1)'; document.body.style.direction = 'rtl'; // 从右到左显示内容 })();