DataURI2Image

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

Was ist DataURI2Image?

DataURI2Image ist eine Chrome-Erweiterung, die von shoito entwickelt wurde, und ihr Hauptmerkmal ist "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.".

Erweiterungsscreenshots

screenshot
screenshot

DataURI2Image-Erweiterungs-CRX-Datei herunterladen

Laden Sie DataURI2Image-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name DataURI2Image DataURI2Image
ID bohclmjbokloadmjfmdoahocaffhkpgc
Offizielle URL https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc
Beschreibung DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
Dateigröße 92.35 KB
Installationsanzahl 41
Aktuelle Version 1.0.0
Letztes Update 2019-10-25
Veröffentlichungsdatum 2019-10-24
Bewertung 4.80/5 Insgesamt 5 Bewertungen
Entwickler shoito
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}