DataURI2Image
DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
What is DataURI2Image?
DataURI2Image is a Chrome extension developed by shoito, and its main feature is "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.".
Extension Screenshots
Download DataURI2Image Extension CRX File
Download DataURI2Image extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 Extension Basic Information
| Name | |
| ID | bohclmjbokloadmjfmdoahocaffhkpgc |
| Official URL | https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc |
| Description | DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it. |
| File Size | 92.35 KB |
| Installation Count | 41 |
| Current Version | 1.0.0 |
| Last Updated | 2019-10-25 |
| Publish Date | 2019-10-24 |
| Rating | 4.80/5 Total 5 Ratings |
| Developer | shoito |
| [email protected] | |
| Payment Type | free |
| Supported Languages | 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:\/\/*\/*"
]
} | |