SVG 2 Clipboard

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

What is SVG 2 Clipboard?

SVG 2 Clipboard is a Chrome extension developed by Ben Winding, and its main feature is "A chrome extension to copy the clicked svg element to the clipboard!".

Extension Screenshots

screenshot

Download SVG 2 Clipboard Extension CRX File

Download SVG 2 Clipboard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This is designed to copy the raw SVG code directly to the clipboard.

- Works on  elements
- Works on  elements (which are SVG's in the source)

Let me know if there's any issues!                    

Extension Basic Information

Name SVG 2 Clipboard SVG 2 Clipboard
ID pacmblooebolmbakblffejfmhmnojece
Official URL https://chromewebstore.google.com/detail/svg-2-clipboard/pacmblooebolmbakblffejfmhmnojece
Description A chrome extension to copy the clicked svg element to the clipboard!
File Size 105 KB
Installation Count 237
Current Version 0.0.1
Last Updated 2020-03-18
Publish Date 2020-03-17
Rating 5.00/5 Total 1 Ratings
Developer Ben Winding
Email [email protected]
Payment Type free
Privacy Policy Page URL https://newsit.benwinding.com/privacy_policy.html
Supported Languages en
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_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"
    ]
}