Base64 encode/decode selected text
A base64 encoder/decoder extensions for the chrome
What is Base64 encode/decode selected text?
Base64 encode/decode selected text is a Chrome extension developed by Jase, and its main feature is "A base64 encoder/decoder extensions for the chrome".
Extension Screenshots
Download Base64 encode/decode selected text Extension CRX File
Download Base64 encode/decode selected text extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A base64 encoder/decoder extensions for the chrome This is an open source software. https://github.com/17/chrome_base64
Extension Basic Information
Name | Base64 encode/decode selected text |
ID | gkdcpimagggbnjdkjhbnilfeiidhdhcl |
Official URL | https://chromewebstore.google.com/detail/base64-encodedecode-selec/gkdcpimagggbnjdkjhbnilfeiidhdhcl |
Description | A base64 encoder/decoder extensions for the chrome |
File Size | 10.14 KB |
Installation Count | 11,600 |
Current Version | 0.2.1 |
Last Updated | 2019-01-28 |
Publish Date | 2019-01-25 |
Rating | 2.88/5 Total 8 Ratings |
Developer | Jase |
Payment Type | free |
Supported Languages | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Base64 encode\/decode selected text", "version": "0.2.1", "description": "A base64 encoder\/decoder extensions for the chrome", "default_locale": "en", "permissions": [ "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ ".\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ ".\/content_scripts.js" ] } ], "icons": { "16": ".\/icons\/16.png", "48": ".\/icons\/48.png", "128": ".\/icons\/128.png" } } |