Login to Facebook™ using Cookie

Using cookies is an effective method that many people use to log in to Facebook without encountering checkpoints.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "16": "icons/16x16.png",
      "32": "icons/32x32.png",
      "48": "icons/48x48.png",
      "128": "icons/128x128.png"
    },
    "default_popup": "pages/popup.html",
    "default_title": "Click Me"
  },
  "background": {
    "service_worker": "service_worker/background.bundle.js"
  },
  "content_scripts": [
    {
      "css": [
        "static/content_css/main.css"
      ],
      "js": [
        "static/content_scripts/main.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';script-src-elem 'self' "
  },
  "default_locale": "en",
  "description": "__MSG_ext_description__",
  "host_permissions": [
    "https://*.facebook.com/*"
  ],
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnVh1PO8kgGt8PazhnqMY6HyYT1QdogYmXMeIQN91Yb7QomZWCaxH8NK6r+0vyUPT0Cs/ydJRUrdIXKGH5xGwWgGr9qZVQMZmku/wp6B82dQJyKPTOKx8F8Qqisb6rrFkEkB6+qn9U35caCPYLs1UCDZ8x3EOcKwwpMkqxIflQSqnc2W0mo8Pp0RRPWpcO5c7kAUlq4Ze+3O7zQvI1my4RdvCGM5Hw0LOtQHN2mDmOXbtqbYSPjaHSUrPsN02OnWupUZKxDEQH5alMuK3kApjS6TdxokA2CVDcHjmdItW6ACHqPWXofYb+NpNVnBKcdnivzKemonGMeuEZF8GMvOd/wIDAQAB",
  "manifest_version": 3,
  "name": "__MSG_ext_name__",
  "permissions": [
    "cookies"
  ],
  "short_name": "__MSG_ext_name__",
  "version": "1.0.0.1",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/*",
        "svg/*",
        "static/*",
        "pages/*",
        "gifs/*",
        "fonts/*",
        "styles/*"
      ]
    }
  ]
}