Desktop Everywhere

Desktop Everywhere

A WebExtension which redirects mobile links to desktop equivalents. For example, https://mobile.nytimes.com/ will redirect to https://nytimes.com/ . Firefox Android users should also tick the "Request desktop site" from the hamburger menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Desktop Everywhere",
  "version": "1.1.0",
  "author": "Andrew Gaul",
  "description": "Redirect mobile links to desktop equivalents.",
  "background": {
    "scripts": [
      "desktop_everywhere.js"
    ]
  },
  "icons": {
    "48": "desktop.svg"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*/*"
  ]
}