Skip to content

Instantly share code, notes, and snippets.

@rlesniak
Last active June 14, 2023 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rlesniak/9d8603c3f83ee35a43e40e4e82875c92 to your computer and use it in GitHub Desktop.
Save rlesniak/9d8603c3f83ee35a43e40e4e82875c92 to your computer and use it in GitHub Desktop.
Fixes mobile view for goldwings.echronometraz
// ==UserScript==
// @name goldwings pdt mobile fix
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Serve mobile version of pdt
// @author Rafal
// @require https://code.jquery.com/jquery-3.6.4.slim.min.js
// @match https://goldwings-epdt.echronometraz.pl/*
// @icon <$ICON$>
// @grant none
// ==/UserScript==
(function() {
'use strict';
$('head').append('<meta name="viewport" content="width=device-width, initial-scale=1" />')
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment