SVG 2 Clipboard

SVG 2 Clipboard

A chrome extension to copy the clicked svg element to the clipboard!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A chrome extension to copy the clicked svg element to the clipboard!",
  "version": "0.0.1",
  "manifest_version": 2,
  "author": "Ben Winding",
  "name": "SVG 2 Clipboard",
  "short_name": "SVG-2-Clipboard",
  "homepage_url": "https://github.com/benwinding/svg-2-clipboard",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "js/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "32": "img/favicon-32x32.png",
    "128": "img/favicon-128x128.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus"
  ]
}