DataURI2Image

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

Co to jest DataURI2Image?

DataURI2Image to rozszerzenie Chrome opracowane przez shoito, a jego główną funkcją jest „DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia DataURI2Image

Pobierz pliki rozszerzeń DataURI2Image w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa DataURI2Image DataURI2Image
ID bohclmjbokloadmjfmdoahocaffhkpgc
Oficjalny URL https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc
Opis DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
Rozmiar pliku 92.35 KB
Liczba instalacji 41
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2019-10-25
Data Publikacji 2019-10-24
Ocena 4.80/5 Łącznie 5 Oceny
Deweloper shoito
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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:\/\/*\/*"
    ]
}