Redirect to mobile site for Wikimedia pages

Redirect to mobile site for Wikimedia pages

When you visit the desktop version of a Wikimedia page, you will be taken to the mobile-optimised page instead

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Redirect to mobile site for Wikimedia pages",
  "short_name": "Wikimedia Mobile Redirect",
  "description": "When you visit the desktop version of a Wikimedia page, you will be taken to the mobile-optimised page instead",
  "author": "Mark Kenny",
  "homepage_url": "https://beingmrkenny.co.uk/web-extensions/wikimedia-mobile-redirect",
  "version": "1.3.5",
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "include_globs": [
        "http://*.wikibooks.org/*",
        "http://*.wikidata.org/*",
        "http://*.wikimedia.org/*",
        "http://*.wikinews.org/*",
        "http://*.wikipedia.org/*",
        "http://*.wikiquote.org/*",
        "http://*.wikisource.org/*",
        "http://*.wikiversity.org/*",
        "http://*.wikivoyage.org/*",
        "http://*.wiktionary.org/*",
        "https://*.wikibooks.org/*",
        "https://*.wikidata.org/*",
        "https://*.wikimedia.org/*",
        "https://*.wikinews.org/*",
        "https://*.wikipedia.org/*",
        "https://*.wikiquote.org/*",
        "https://*.wikisource.org/*",
        "https://*.wikiversity.org/*",
        "https://*.wikivoyage.org/*",
        "https://*.wiktionary.org/*"
      ],
      "js": [
        "URLProcessor.js",
        "script.js"
      ],
      "matches": [
        "http://*.wikibooks.org/*",
        "http://*.wikidata.org/*",
        "http://*.wikimedia.org/*",
        "http://*.wikinews.org/*",
        "http://*.wikipedia.org/*",
        "http://*.wikiquote.org/*",
        "http://*.wikisource.org/*",
        "http://*.wikiversity.org/*",
        "http://*.wikivoyage.org/*",
        "http://*.wiktionary.org/*",
        "https://*.wikibooks.org/*",
        "https://*.wikidata.org/*",
        "https://*.wikimedia.org/*",
        "https://*.wikinews.org/*",
        "https://*.wikipedia.org/*",
        "https://*.wikiquote.org/*",
        "https://*.wikisource.org/*",
        "https://*.wikiversity.org/*",
        "https://*.wikivoyage.org/*",
        "https://*.wiktionary.org/*"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "Redirect to mobile site for Wikimedia pages",
    "default_popup": "popup.html",
    "default_icon": "img/buttonIcon.png"
  }
}