DataURI2Image

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

O que é DataURI2Image?

DataURI2Image é uma extensão do Chrome desenvolvida por shoito, e sua principal característica é "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão DataURI2Image

Baixe arquivos de extensão DataURI2Image no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome DataURI2Image DataURI2Image
ID bohclmjbokloadmjfmdoahocaffhkpgc
URL Oficial https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc
Descrição DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
Tamanho do Arquivo 92.35 KB
Contagem de Instalações 41
Versão Atual 1.0.0
Última Atualização 2019-10-25
Data de Publicação 2019-10-24
Classificação 4.80/5 Total de 5 Avaliações
Desenvolvedor shoito
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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:\/\/*\/*"
    ]
}