Instapaper Fixes

Enable/fix the sidebar to scroll and stretches images in their original quality to full width of text container.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name     		Instapaper Fixes
// @version  		3
// @description Enable/fix the sidebar to scroll and stretches images in their original quality to full width of text container.
// @license  		MIT License
// @grant    		none
// @match    		https://www.instapaper.com/*
// @namespace https://greatest.deepsurf.us/users/389487
// ==/UserScript==

const sidebarContainer = document.querySelector(".scroller_y")
if (!!sidebarContainer) {
	sidebarContainer.style.overflowY = "auto"
	sidebarContainer.style.height = "100%"
}

const imageContainer = document.querySelectorAll("figure img")
for (const image of imageContainer) {
	image.style.width = "100%"
  image.src = image.src.replace(/\?w=\d+$/, "")
}