DataURI2Image
DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
Apa itu DataURI2Image?
DataURI2Image adalah ekstensi Chrome yang dikembangkan oleh shoito, dan fitur utamanya adalah "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi DataURI2Image
Unduh file ekstensi DataURI2Image dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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 Informasi Dasar Ekstensi
| Nama | |
| ID | bohclmjbokloadmjfmdoahocaffhkpgc |
| URL Resmi | https://chromewebstore.google.com/detail/datauri2image/bohclmjbokloadmjfmdoahocaffhkpgc |
| Deskripsi | DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it. |
| Ukuran File | 92.35 KB |
| Jumlah Instalasi | 41 |
| Versi Saat Ini | 1.0.0 |
| Terakhir Diperbarui | 2019-10-25 |
| Tanggal Publikasi | 2019-10-24 |
| Penilaian | 4.80/5 Total 5 Penilaian |
| Pengembang | shoito |
| [email protected] | |
| Tipe Pembayaran | free |
| Bahasa yang Didukung | 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:\/\/*\/*"
]
} | |