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.”。
扩展截图
下载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 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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:\/\/*\/*"
]
} | |