Clean AccuWeather

Remove right column in two-column page content

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

  1. // ==UserScript==
  2. // @name Clean AccuWeather
  3. // @description Remove right column in two-column page content
  4. // @namespace shiftgeist
  5. // @match https://www.accuweather.com/*
  6. // @grant GM_addStyle
  7. // @version 20250222
  8. // @author shiftgeist
  9. // @license GNU GPLv3
  10. // @run-at document-start
  11. // ==/UserScript==
  12.  
  13. GM_addStyle(`
  14. .two-column-page-content .page-column-1 {
  15. margin-left: 24px;
  16. width: 100% !important;
  17. }
  18.  
  19. .two-column-page-content .page-column-2 {
  20. display: none;
  21. }
  22. `);