SVG 2 Clipboard

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

SVG 2 Clipboardคืออะไร?

SVG 2 Clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ben Winding และคุณลักษณะหลักของมันคือ "A chrome extension to copy the clicked svg element to the clipboard!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SVG 2 Clipboard

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}