SVG 2 Clipboard

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

Wat is SVG 2 Clipboard?

SVG 2 Clipboard is een Chrome-extensie ontwikkeld door Ben Winding, en de belangrijkste functie is "A chrome extension to copy the clicked svg element to the clipboard!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie SVG 2 Clipboard

Download SVG 2 Clipboard-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam SVG 2 Clipboard SVG 2 Clipboard
ID pacmblooebolmbakblffejfmhmnojece
Officiële URL https://chromewebstore.google.com/detail/svg-2-clipboard/pacmblooebolmbakblffejfmhmnojece
Beschrijving A chrome extension to copy the clicked svg element to the clipboard!
Bestandsgrootte 105 KB
Aantal Installaties 237
Huidige Versie 0.0.1
Laatst Bijgewerkt 2020-03-18
Publicatiedatum 2020-03-17
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Ben Winding
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://newsit.benwinding.com/privacy_policy.html
Ondersteunde Talen 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"
    ]
}