Adobe XD Rem fix

Adobe XD Rem fix

It is only a small script that serves to force the change from px to rem automatically

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Adobe XD Rem fix",
  "description": "It is only a small script that serves to force the change from px to rem automatically",
  "version": "0.1",
  "manifest_version": 3,
  "host_permissions": [
    "https://xd.adobe.com/"
  ],
  "content_scripts": [
    {
      "js": [
        "foreground.js"
      ],
      "matches": [
        "https://xd.adobe.com/*"
      ]
    }
  ],
  "icons": {
    "16": "/images/xdToRemIcon16.png",
    "32": "/images/xdToRemIcon32.png",
    "48": "/images/xdToRemIcon48.png",
    "128": "/images/xdToRemIcon128.png"
  }
}