SVG 2 Clipboard

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

Hvad er SVG 2 Clipboard?

SVG 2 Clipboard er en Chrome-udvidelse udviklet af Ben Winding, og dens hovedfunktion er "A chrome extension to copy the clicked svg element to the clipboard!".

Udvidelsesskærmbilleder

screenshot

Download SVG 2 Clipboard-udvidelses-CRX-fil

Download SVG 2 Clipboard-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn SVG 2 Clipboard SVG 2 Clipboard
ID pacmblooebolmbakblffejfmhmnojece
Officiel URL https://chromewebstore.google.com/detail/svg-2-clipboard/pacmblooebolmbakblffejfmhmnojece
Beskrivelse A chrome extension to copy the clicked svg element to the clipboard!
Filstørrelse 105 KB
Antal Installationer 237
Nuværende Version 0.0.1
Senest Opdateret 2020-03-18
Udgivelsesdato 2020-03-17
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Ben Winding
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://newsit.benwinding.com/privacy_policy.html
Understøttede Sprog 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"
    ]
}