Old Reddit Redirector

This add-on simply redirects Reddit pages that you visit to old.reddit.com where applicable (old Reddit UI)
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Old Reddit Redirector",
  "version": "1.1",
  "description": "Redirects all visited Reddit pages to old.reddit.com (old version of the website)",
  "icons": {
    "48": "icons/icon-48.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "https://www.reddit.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "developer": {
    "name": "Zeex",
    "url": "https://zeex.github.io"
  },
  "homepage_url": "https://github.com/Zeex/old-reddit"
}