您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser, rather than maxing out at the default ~900 pixels.
当前为
// ==UserScript== // @name Make GitHub Pull Request, Commit, and Blob pages full width // @namespace https://bitbucket.org/deadlydog/greasemonkeyscripts // @description Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser, rather than maxing out at the default ~900 pixels. // @include https://github.com/*/pull/*/files* // @include https://github.com/*/commit/* // @include https://github.com/*/blob/* // @grant none // @version 1.0.0 // ==/UserScript== elements = document.getElementsByClassName('container-lg'); for (index = 0; index < elements.length; index++) { elements[index].style.width="95%"; // Only 95% to leave room for the "add comment" tooltip icon. }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址