Octordle Widescreen Usability

This user script breaks out from the 2 columns, 4 rows layout to a 2 rows, 4 columns layout.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name     Octordle Widescreen Usability
// @description This user script breaks out from the 2 columns, 4 rows layout to a 2 rows, 4 columns layout.
// @version  3
// @include https://www.britannica.com/games/octordle/*
// @grant    GM_addStyle
// @require https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js
// @namespace https://www.britannica.com/games/octordle
// @license EUPL-1.2
// ==/UserScript==
GM_addStyle
(`
.banner-newsletter, .promo-area, .ad-board, mw-quordle-more-games-cms, .ad-banner {
  display: none;
 }
.board {
  width: 22.5%;
}
.normal-boards {
	width: 100%;
	flex: 1;
	overflow: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 99%;
	margin: auto;
	padding-top: 10px;
}
.letter {
    height: 1.7rem!important;
}
`);