您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Don't wrap code lines
- /* ==UserStyle==
- @name GitHub - Don't wrap code lines
- @description Don't wrap code lines
- @namespace https://greasyfork.org/users/4813
- @author Swyter, based on snippets by @gusutabopb on GitHub
- @version 2023.01.10
- @license CC-BY-SA 4.0
- @preprocessor default
- ==/UserStyle== */
- /* https://github.com/community/community/discussions/42298#discussioncomment-4484068 */
- @-moz-document domain("github.com")
- {
- body .gist .blob-code-inner {
- white-space: pre ;
- }
- /* No `.gist` */
- body .blob-code-inner {
- white-space: pre;
- }
- }