Export SVG with Style

Export SVG with Style

Adds a SVG export button to the browser, which spits out SVG DOM elements present on page as files including CSS.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Export SVG with Style",
  "description": "Adds a SVG export button to the browser, which spits out SVG DOM elements present on page as files including CSS.",
  "version": "1.23",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "svgexp.js",
        "fileSaver/FileSaver.js"
      ]
    }
  ],
  "permissions": [],
  "action": {
    "default_title": "Export SVG",
    "default_icon": "svg_16x16.png"
  },
  "manifest_version": 3,
  "icons": {
    "16": "svg_16x16.png",
    "48": "svg_48x48.png",
    "128": "svg_128x128.png"
  },
  "author": "Martin Graham"
}