DataURI2Image

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

DataURI2Imageとは何ですか?

DataURI2Imageはshoitoによって開発されたChromeの拡張機能で、その主な機能は「DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.」です。

拡張機能のスクリーンショット

screenshot
screenshot

DataURI2Image拡張機能のCRXファイルをダウンロード

DataURI2Image拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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:\/\/*\/*"
    ]
}