Examine source code of Florida Man Replacement

Inspect and view changes in Florida Man Replacement 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": "Florida Man",
  "version": "1.0",
  "description": "Replaces 'Trump' or 'Donald Trump' with 'Florida Man' on webpages.",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{b175701a-727b-44da-95f9-924c75f8ef84}"
    }
  }
}