Greasy Fork镜像 还支持 简体中文。

Geizhals full width

Removes width limitations on Geizhals.de to use full browser width

目前為 2025-03-26 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Geizhals full width
// @namespace   Violentmonkey Scripts
// @match       https://geizhals.de/*
// @grant       none
// @version     1.0
// @author      manuuurino
// @description Removes width limitations on Geizhals.de to use full browser width
// @namespace   https://github.com/manuuurino/userscript-geizhals-full-width
// @license     MIT
// ==/UserScript==

(function () {
  "use strict";

  function removeWidthCap() {
    const style = document.createElement("style");

    style.textContent = `
      :root {
        --max-width-site: 100% !important;
      }
    `;

    document.head.appendChild(style);

    console.log("Geizhals width cap removed");
  }

  removeWidthCap();
})();

QingJ © 2025

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