Skip to content

Instantly share code, notes, and snippets.

@mcjuraj
Last active July 16, 2024 18:13
Show Gist options
  • Save mcjuraj/31729bfdb938273a261687642f27d4ba to your computer and use it in GitHub Desktop.
Save mcjuraj/31729bfdb938273a261687642f27d4ba to your computer and use it in GitHub Desktop.
iOS Safari Desktop Mode Resolution
// ==UserScript==
// @name Desktop Mode
// @version 0.0.1
// @author mcjuraj
// @match *://*/*
// @downloadURL https://gist.github.com/mcjuraj/31729bfdb938273a261687642f27d4ba/raw/desktop-mode.user.js
// @updateURL https://gist.github.com/mcjuraj/31729bfdb938273a261687642f27d4ba/raw/desktop-mode.user.js
// @homepage https://gist.github.com/mcjuraj/31729bfdb938273a261687642f27d4ba/
// ==/UserScript==
const metaTag=document.createElement('meta');
metaTag.name='viewport';
metaTag.content='width=1600';
document.getElementsByTagName('head')[0].appendChild(metaTag);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment