Instagram Mobile WebView

Enables the mobile view (with DMs and the possibility to upload) on desktop

  1. // ==UserScript==
  2. // @name Instagram Mobile WebView
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Enables the mobile view (with DMs and the possibility to upload) on desktop
  6. // @author Poup2804
  7. // @include https://www.instagram.com/*
  8. // @grant none
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. navigator.__defineGetter__('userAgent', function(){
  16. return 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Mobile Safari/537.36';
  17. });
  18. })();