Examine source code of Facebook Ad Library Downloader

Inspect and view changes in Facebook Ad Library Downloader 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.0",
  "name": "Facebook Ad Library Downloader",
  "description": "Install this extension to quickly grab ads from the Facebook Ads Library with just one click. Store and manage ad videos easily",
  "icons": {
    "16": "icons/ICON16.png",
    "32": "icons/ICON32.png",
    "64": "icons/ICON64.png",
    "128": "icons/ICON128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "icons/ICON16.png",
      "32": "icons/ICON32.png",
      "64": "icons/ICON64.png",
      "128": "icons/ICON128.png"
    }
  },
  "background": {
    "service_worker": "background/background.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "downloads",
    "notifications"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "interceptor.js",
        "icons/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_ui": {
    "page": "index.html",
    "open_in_tab": true
  }
}