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 |
| 官方網址 | 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:\/\/*\/*"
]
} | |