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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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'" } |