Make GitHub Pull Request, Commit, and Blob pages full width

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.6.1
// ==/UserScript==

elements = document.getElementsByClassName('container');
for (index = 0; index < elements.length; index++)
{
	elements[index].style.width="95%";	// Only 95% to leave room for the "add comment" tooltip icon.
}

elements = document.getElementsByClassName('repository-content context-loader-container');
for (index = 0; index < elements.length; index++)
{
	elements[index].style.width="96%";
}

// Remove the restriction that hides file names from view over a certain length, to use the available width of the element.
elements = document.getElementsByClassName('css-truncate css-truncate-target');
for (index = 0; index < elements.length; index++)
{
	elements[index].style.maxWidth="100%";
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址