SVG2PNG

Save inline as .png files

SVG2PNGとは何ですか?

SVG2PNGはInEventによって開発されたChromeの拡張機能で、その主な機能は「Save inline as .png files」です。

拡張機能のスクリーンショット

screenshot

SVG2PNG拡張機能のCRXファイルをダウンロード

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"
    ]
}