Greasy Fork is available in English.
Reloads web/desktop version of a blog
// ==UserScript==// @name Blogger Desktop Version// @namespace K.D.// @run-at document-start// @match *://*.blogspot.com/*// @grant none// @version 1.1// @author -// @description Reloads web/desktop version of a blog// ==/UserScript==let a= window.location.href;let b= a.split('?m=');let c= b[1];if (c==1) {window.location= a.replace('?m=1','?m=0');}