SVG Copy to clipboard

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

Qu'est-ce que SVG Copy to clipboard ?

SVG Copy to clipboard est une extension Chrome développée par KC Computing, et sa fonction principale est "This Chrome extension allows you to copy inline svg code to your clipboard".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension SVG Copy to clipboard

Téléchargez les fichiers d'extension SVG Copy to clipboard au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/)                    

Informations de Base sur l'Extension

Nom SVG Copy to clipboard SVG Copy to clipboard
ID bkhampfdmillcjnggcacmbllkcefmdam
URL Officiel https://chrome.google.com/webstore/detail/svg-copy-to-clipboard/bkhampfdmillcjnggcacmbllkcefmdam
Description This Chrome extension allows you to copy inline svg code to your clipboard
Taille du Fichier 45.38 KB
Nombre d'Installations 1,000
Version Actuelle 1.0
Dernière Mise à Jour 2020-03-23
Date de Publication 2020-03-23
Évaluation 3.40/5 Total 10 Évaluations
Développeur KC Computing
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://kccomputing.net/
URL de la Page d'Aide https://kccomputing.net/contact-me/
Langues Prises en Charge 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"
        ]
    }
}