SVG2PNG

Save inline as .png files

ما هو SVG2PNG؟

SVG2PNG هو إضافة Chrome تم تطويرها بواسطة InEvent، والميزة الرئيسية لها هي "Save inline as .png files".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة SVG2PNG

قم بتنزيل ملفات الامتداد SVG2PNG بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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