Image To Base64
Convert local image file to base64 data.
Image To Base64คืออะไร?
Image To Base64 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sxshengyushan และคุณลักษณะหลักของมันคือ "Convert local image file to base64 data."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Image To Base64
ดาวน์โหลดไฟล์ส่วนขยาย Image To Base64 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Users can directly convert local pictures into base64 data through this extension, without running local commands or opening web pages with the same function. This extension can provide conversion services more conveniently
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Image To Base64 |
ID | fdldjonkclmoealklnknlphepoijbjbf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/image-to-base64/fdldjonkclmoealklnknlphepoijbjbf |
คำอธิบาย | Convert local image file to base64 data. |
ขนาดไฟล์ | 729 KB |
จำนวนการติดตั้ง | 83 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2020-10-20 |
วันที่เผยแพร่ | 2020-10-01 |
ผู้พัฒนา | sxshengyushan |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Image To Base64", "version": "1.0.0", "description": "Convert local image file to base64 data.", "browser_action": { "default_popup": "popup\/index.html", "default_title": "Begin to convert image to Base64" }, "icons": { "16": ".\/assets\/icon16.png", "48": ".\/assets\/icon48.png", "128": ".\/assets\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-...='; object-src 'self'" } |