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 là gì?

Save SVG as PNG là một tiện ích mở rộng Chrome được phát triển bởi Einar Egilsson, và tính năng chính của nó là "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.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Save SVG as PNG

Tải xuống các tệp mở rộng Save SVG as PNG dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Save SVG as PNG Save SVG as PNG
ID dihlbjcdgfoehmhbklciidmolbmabkki
URL Chính Thức https://chromewebstore.google.com/detail/save-svg-as-png/dihlbjcdgfoehmhbklciidmolbmabkki
Mô tả 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.
Kích Thước Tệp 99.75 KB
Số Lần Cài Đặt 13,139
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-08-22
Ngày Phát Hành 2018-08-22
Đánh Giá 2.61/5 Tổng số 57 Đánh Giá
Nhà Phát Triển Einar Egilsson
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}