DataURI2Image

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

Wat is DataURI2Image?

DataURI2Image is een Chrome-extensie ontwikkeld door shoito, en de belangrijkste functie is "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie DataURI2Image

Download DataURI2Image-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam DataURI2Image DataURI2Image
ID bohclmjbokloadmjfmdoahocaffhkpgc
Officiële URL https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc
Beschrijving DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
Bestandsgrootte 92.35 KB
Aantal Installaties 41
Huidige Versie 1.0.0
Laatst Bijgewerkt 2019-10-25
Publicatiedatum 2019-10-24
Beoordeling 4.80/5 Totaal 5 Beoordelingen
Ontwikkelaar shoito
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/*"
    ]
}