SVG 2 Clipboard

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

Apa itu SVG 2 Clipboard?

SVG 2 Clipboard adalah ekstensi Chrome yang dikembangkan oleh Ben Winding, dan fitur utamanya adalah "A chrome extension to copy the clicked svg element to the clipboard!".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi SVG 2 Clipboard

Unduh file ekstensi SVG 2 Clipboard dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama SVG 2 Clipboard SVG 2 Clipboard
ID pacmblooebolmbakblffejfmhmnojece
URL Resmi https://chromewebstore.google.com/detail/svg-2-clipboard/pacmblooebolmbakblffejfmhmnojece
Deskripsi A chrome extension to copy the clicked svg element to the clipboard!
Ukuran File 105 KB
Jumlah Instalasi 237
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2020-03-18
Tanggal Publikasi 2020-03-17
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Ben Winding
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://newsit.benwinding.com/privacy_policy.html
Bahasa yang Didukung 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"
    ]
}