Amazing Fields for Trello

Amazing Fields for Trello

Extension to update Trello UI when using Amazing Fields

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Amazing Fields for Trello",
  "description": "Extension to update Trello UI when using Amazing Fields",
  "version": "1.0.1",
  "manifest_version": 3,
  "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"
      ]
    }
  ]
}