您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
解决宽屏状态下沉浸式翻译无法正常显示
// ==UserScript== // @name Daily Papers 加宽 // @namespace http://tampermonkey.net/ // @version 2024-06-21 // @description 解决宽屏状态下沉浸式翻译无法正常显示 // @author You // @match https://huggingface.co/papers // @icon https://www.google.com/s2/favicons?sz=64&domain=huggingface.co // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Your code here... var style = document.createElement('style'); document.head.appendChild(style); style.type = 'text/css'; style.appendChild(document.createTextNode('@media (min-width: 1280px) { .xl\\:grid-cols-3 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } }')); })();