SVG 2 Clipboard

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

Qu'est-ce que SVG 2 Clipboard ?

SVG 2 Clipboard est une extension Chrome développée par Ben Winding, et sa fonction principale est "A chrome extension to copy the clicked svg element to the clipboard!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension SVG 2 Clipboard

Téléchargez les fichiers d'extension SVG 2 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 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!                    

Informations de Base sur l'Extension

Nom SVG 2 Clipboard SVG 2 Clipboard
ID pacmblooebolmbakblffejfmhmnojece
URL Officiel https://chromewebstore.google.com/detail/svg-2-clipboard/pacmblooebolmbakblffejfmhmnojece
Description A chrome extension to copy the clicked svg element to the clipboard!
Taille du Fichier 105 KB
Nombre d'Installations 237
Version Actuelle 0.0.1
Dernière Mise à Jour 2020-03-18
Date de Publication 2020-03-17
Évaluation 5.00/5 Total 1 Évaluations
Développeur Ben Winding
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://newsit.benwinding.com/privacy_policy.html
Langues Prises en Charge 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"
    ]
}