DataURI2Image
DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it.
DataURI2Imageคืออะไร?
DataURI2Image เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shoito และคุณลักษณะหลักของมันคือ "DataURI2Image is Chrome Extension which makes a image from the selected Data URI scheme and can check it."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DataURI2Image
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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:\/\/*\/*" ] } |