SVG 2 Clipboard

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

Vad är SVG 2 Clipboard?

SVG 2 Clipboard är en Chrome-tillägg utvecklad av Ben Winding, och dess huvudfunktion är "A chrome extension to copy the clicked svg element to the clipboard!".

Tilläggsskärmbilder

screenshot

Ladda ner SVG 2 Clipboard-förlängningens CRX-fil

Ladda ner SVG 2 Clipboard-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn SVG 2 Clipboard SVG 2 Clipboard
ID pacmblooebolmbakblffejfmhmnojece
Officiell webbadress https://chromewebstore.google.com/detail/svg-2-clipboard/pacmblooebolmbakblffejfmhmnojece
Beskrivning A chrome extension to copy the clicked svg element to the clipboard!
Filstorlek 105 KB
Antal Installationer 237
Aktuell Version 0.0.1
Senast Uppdaterad 2020-03-18
Publiceringsdatum 2020-03-17
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Ben Winding
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://newsit.benwinding.com/privacy_policy.html
Stödda Språk 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"
    ]
}