Old Layout for Facebook2020

Old Layout for Facebook2020

Revert Facebook to the Old Layout (pre-Sep 2020) by changing your browser's user-agent string to one not supported by the new layout

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Revert Facebook to the Old Layout (pre-Sep 2020) by changing your browser's user-agent string to one not supported by the new layout",
  "manifest_version": 2,
  "name": "Old Layout for Facebook",
  "author": "Matt Kruse",
  "version": "2.0",
  "homepage_url": "https://OldLayout.com",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*.facebook.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icon-16.png",
      "19": "icon-19.png",
      "32": "icon-32.png",
      "38": "icon-38.png",
      "48": "icon-48.png"
    },
    "default_title": "Old Layout for Facebook",
    "default_popup": "./options.html"
  }
}