Image To Base64
Convert local image file to base64 data.
Image To Base64とは何ですか?
Image To Base64はsxshengyushanによって開発されたChromeの拡張機能で、その主な機能は「Convert local image file to base64 data.」です。
拡張機能のスクリーンショット
Image To Base64拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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'" } |