Stop przymusowo połączonym ofertom na Allegro!
// ==UserScript==
// @name Allegro - Rozłącz Oferty!
// @namespace http://tampermonkey.net/
// @version 1.11
// @description Stop przymusowo połączonym ofertom na Allegro!
// @author Mr. Hermano
// @match https://allegro.pl/kategoria/*
// @match https://allegro.pl/listing*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
let url = window.location.href;
if (!url.includes('description=1')) {
window.location.replace(url + (url.includes('?') ? '&' : '?') + 'description=1');
}
})();