AWS Docs Narrower Column

Makes text easier to read by not using 100% width

目前為 2020-05-11 提交的版本,檢視 最新版本

// ==UserScript==
// @name               AWS Docs Narrower Column
// @description        Makes text easier to read by not using 100% width
// @version            1
// @include            https://docs.aws.amazon.com/*
// @namespace https://gf.qytechs.cn/users/153157
// ==/UserScript==


GM_addStyle_from_string(`
	#main-column {
		max-width: 650px !important;
		margin: auto !important;
	}
`);

function GM_addStyle_from_string(str) {
  var node = document.createElement('style');
  node.innerHTML = str;
  document.body.appendChild(node);
}

QingJ © 2025

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