Enable User Scalability

Enables user scalability on web pages by setting user-scalable to yes

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo 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           Enable User Scalability
// @namespace      http://example.com
// @description    Enables user scalability on web pages by setting user-scalable to yes
// @version        0.1
// @license        MIT
// @include        *
// @grant          none
// ==/UserScript==

(function() {
  'use strict';

  var metaTag = document.querySelector('meta[name="viewport"]');
  if (metaTag) {
    metaTag.setAttribute('content', 'width=device-width, initial-scale=1, user-scalable=yes, maximum-scale=10');
  }
})();