// ==UserScript== // @name Blogger Desktop Version // @namespace K.D. // @match *://*.blogspot.com/* // @grant none // @version 1.0 // @author - // @description Reloads web/desktop version of a blog // @downloadURL none // ==/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'); }