Scan CSS

Scan CSS

A script to inspect, scan and copy CSS properties of any element on the web page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Scan CSS",
  "description": "A script to inspect, scan and copy CSS properties of any element on the web page",
  "version": "1.0.2",
  "icons": {
    "16": "icons/Icon-16.png",
    "32": "icons/Icon-32.png",
    "64": "icons/Icon-64.png",
    "128": "icons/Icon-128.png",
    "196": "icons/Icon-196.png",
    "256": "icons/Icon-256.png",
    "512": "icons/Icon-512.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "script.js"
      ]
    }
  ]
}