Clean AccuWeather

Remove right column in two-column page content

目前为 2025-02-24 提交的版本。查看 最新版本

// ==UserScript==
// @name        Clean AccuWeather
// @description Remove right column in two-column page content
// @namespace   shiftgeist
// @match       https://www.accuweather.com/*
// @grant       GM_addStyle
// @version     20250222
// @author      shiftgeist
// @license     GNU GPLv3
// @run-at      document-start
// ==/UserScript==

GM_addStyle(`
  .two-column-page-content .page-column-1 {
    margin-left: 24px;
    width: 100% !important;
  }

  .two-column-page-content .page-column-2 {
    display: none;
  }
`);