Save SVG as PNG

Save SVG images as PNG. Navigate to an .svg file, right click on it and click on the context menu item 'Save SVG as PNG.

Save SVG as PNGคืออะไร?

Save SVG as PNG เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Einar Egilsson และคุณลักษณะหลักของมันคือ "Save SVG images as PNG. Navigate to an .svg file, right click on it and click on the context menu item 'Save SVG as PNG."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Save SVG as PNG

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

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

                        Lets you click on the extension icon or right click on an .svg file and choose Save SVG as PNG. You will be able to specify the desired width of the rendered PNG image. The image will be opened in a new tab where you can see it and right click on it to save it to disk.

This only works if you have the .svg file open in its own tab, you can't click on a svg file that's embedded in a page, you would first have to right click on it, choose "Open image in new tab" and then go to that tab to convert it to png.                    

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

ชื่อ Save SVG as PNG Save SVG as PNG
ID dihlbjcdgfoehmhbklciidmolbmabkki
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/save-svg-as-png/dihlbjcdgfoehmhbklciidmolbmabkki
คำอธิบาย Save SVG images as PNG. Navigate to an .svg file, right click on it and click on the context menu item 'Save SVG as PNG.
ขนาดไฟล์ 99.75 KB
จำนวนการติดตั้ง 13,139
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2018-08-22
วันที่เผยแพร่ 2018-08-22
คะแนน 2.61/5 รวมทั้งหมด 57 คะแนน
ผู้พัฒนา Einar Egilsson
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Save SVG as PNG",
    "version": "1.0",
    "author": "Einar Egilsson",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "description": "Save SVG images as PNG. Navigate to an .svg file, right click on it and click on the context menu item 'Save SVG as PNG.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Click to save current SVG as PNG"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*.svg",
                "http:\/\/*\/*.svg",
                "file:\/\/*\/*.svg"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "tabs"
    ]
}