SVG 2 Clipboard

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

什么是SVG 2 Clipboard?

SVG 2 Clipboard是由Ben Winding开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to copy the clicked svg element to the clipboard!”。

扩展截图

screenshot

下载SVG 2 Clipboard扩展crx文件

下载SVG 2 Clipboard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 SVG 2 Clipboard SVG 2 Clipboard
ID pacmblooebolmbakblffejfmhmnojece
官方URL https://chromewebstore.google.com/detail/svg-2-clipboard/pacmblooebolmbakblffejfmhmnojece
简介 A chrome extension to copy the clicked svg element to the clipboard!
文件大小 105 KB
安装次数 237
当前版本 0.0.1
更新时间 2020-03-18
上架时间 2020-03-17
评分 5.00/5 共1次评分
开发者 Ben Winding
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://newsit.benwinding.com/privacy_policy.html
支持的语言 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"
    ]
}