svg-grabber - get all the svg's from a site

svg-grabber - get all the svg's from a site

A tool to quickly preview and get all the svg assets from a website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "svg-grabber - get all the svg's from a site",
  "short_name": "svg-grabber",
  "description": "A tool to quickly preview and get all the svg assets from a website.",
  "version": "1.0.0",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "svggrabber48.png"
  },
  "icons": {
    "16": "svggrabber16.png",
    "48": "svggrabber48.png",
    "128": "svggrabber128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}