SVG Copy to clipboard

This Chrome extension allows you to copy inline svg code to your clipboard

Was ist SVG Copy to clipboard?

SVG Copy to clipboard ist eine Chrome-Erweiterung, die von KC Computing entwickelt wurde, und ihr Hauptmerkmal ist "This Chrome extension allows you to copy inline svg code to your clipboard".

Erweiterungsscreenshots

screenshot

SVG Copy to clipboard-Erweiterungs-CRX-Datei herunterladen

Laden Sie SVG Copy to clipboard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension allows you to copy inline SVG code to your clipboard by right clicking on an inline SVG and selecting the "Copy SVG Code to Clipboard" option from the context menu. 

NOTE: I have been getting a lot of 1 star reviews for this extension due to users not understanding what "Inline SVG" means, please understand that inline means you can actually see the svg code in with the html code when you inspect the page. This will NOT copy svg's in image tags, nor will it copy icons that are not SVG's.
I use this extension almost everyday on a multitude of sites and have no problems with copying INLINE svgs.
Please contact me about your problems before jumping to giving a FREE extension an undeserved 1 star review.

This extension was developed for our team to make it faster to get SVG's from Font Awesome (as we have the pro license)
Icon made by Freepik (http://www.freepik.com) from www.flaticon.com and is is licensed by CC 3.0 (http://creativecommons.org/licenses/by/3.0/)                    

Grundlegende Informationen zur Erweiterung

Name SVG Copy to clipboard SVG Copy to clipboard
ID bkhampfdmillcjnggcacmbllkcefmdam
Offizielle URL https://chrome.google.com/webstore/detail/svg-copy-to-clipboard/bkhampfdmillcjnggcacmbllkcefmdam
Beschreibung This Chrome extension allows you to copy inline svg code to your clipboard
Dateigröße 45.38 KB
Installationsanzahl 1,000
Aktuelle Version 1.0
Letztes Update 2020-03-23
Veröffentlichungsdatum 2020-03-23
Bewertung 3.40/5 Insgesamt 10 Bewertungen
Entwickler KC Computing
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://kccomputing.net/
Hilfeseite URL https://kccomputing.net/contact-me/
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SVG Copy to clipboard",
    "description": "This Chrome extension allows you to copy inline svg code to your clipboard",
    "version": "1.0",
    "author": "Kyle Charlton and Christian Longe",
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}