DataURI2Image

DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.

DataURI2Image क्या है?

DataURI2Image shoito द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DataURI2Image एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        How to use

1. Select data URI scheme on Web site like gist, blog

ex) data:image/png;base64,iVBORw0KGgoAA...

2. Click "Data URI to Image" from context menu


Data URI scheme samples
https://gist.github.com/shoito/5868550                    

एक्सटेंशन की मूल जानकारी

नाम DataURI2Image DataURI2Image
ID bohclmjbokloadmjfmdoahocaffhkpgc
आधिकारिक URL https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc
विवरण DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
फ़ाइल का आकार 92.35 KB
स्थापना संख्या 41
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2019-10-25
प्रकाशन तिथि 2019-10-24
रेटिंग 4.80/5 कुल 5 रेटिंग्स
डेवलपर shoito
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "ja",
    "background": {
        "persistent": false,
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "components\/jquery\/jquery.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}