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
官方網址 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"
    ]
}