Examine source code of Unreeled: Facebook Doomscroll

Inspect and view changes in Unreeled: Facebook Doomscroll source codes across current and past versions
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": "Unreeled - Anti-Doomscrolling",
  "version": "1.0",
  "description": "By: Alkaide. An extension to curb doomscrolling by prompting a delay before playing the next Facebook Reel.",
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "48": "icons/unreeled-48.png",
    "96": "icons/unreeled-96.png",
    "128": "icons/unreeled-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "popup.html",
    "popup.css",
    "popup.js"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{60c79389-64ea-4988-a75f-e39a90d62fad}"
    }
  }
}