Examine source code of Sponsor Blocker for facebook.com

Inspect and view changes in Sponsor Blocker for facebook.com 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": "Facebook Sponsor Blocker",
  "version": "1.3",
  "description": "Removes sponsored posts from facebook.com",
  "permissions": [
    "storage",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {}
}