Amazing Fields for Trello

Extends Amazing Fields for Trello Powerup to customize UI on Firefox.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Amazing Fields for Trello",
  "description": "Extension to update Trello UI when using Amazing Fields",
  "version": "2.0.1",
  "manifest_version": 2,
  "icons": {
    "48": "images/amf_logo.png",
    "128": "images/amf_logo.png",
    "480": "images/amf_logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*",
        "https://app.amazingpowerups.com/*",
        "https://amazing-powerups-staging-pu.web.app/*"
      ],
      "run_at": "document_idle",
      "match_origin_as_fallback": true,
      "all_frames": true,
      "js": [
        "helpers.js",
        "trello-inject.js"
      ],
      "css": [
        "amf-extension-overrides.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{1a3a8a6e-20d6-4230-ba20-bab7892677cb}"
    }
  }
}