SVG2PNG

Save inline as .png files

SVG2PNGคืออะไร?

SVG2PNG เป็นส่วนขยายของ Chrome ที่พัฒนาโดย InEvent และคุณลักษณะหลักของมันคือ "Save inline as .png files"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย SVG2PNG ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A simple Chrome plugin which converts a  element from a webpage to a .png file.

Features:

- Allows you to choose your file name for every single conversion.
- Automatically generates retina size files (1x, 2x and 3x).
- Built-in right within your context menu for easy access.

Additional details can be found at: https://github.com/pedro380085/SVG2PNG                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SVG2PNG SVG2PNG
ID mjmflhaljgohpgdciblbbgkldlpclajd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/svg2png/mjmflhaljgohpgdciblbbgkldlpclajd
คำอธิบาย Save inline as .png files
ขนาดไฟล์ 8.39 KB
จำนวนการติดตั้ง 449
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2015-11-01
วันที่เผยแพร่ 2015-11-01
คะแนน 1.90/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา InEvent
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SVG2PNG",
    "description": "Save inline  as .png files",
    "version": "1.1",
    "icons": {
        "16": "split-16.png",
        "48": "split-48.png",
        "128": "split-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "unlimitedStorage",
        "notifications",
        "activeTab"
    ]
}