Base64 encode/decode selected text
A base64 encoder/decoder extensions for the chrome
Base64 encode/decode selected text란 무엇입니까?
Base64 encode/decode selected text은(는) Jase에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A base64 encoder/decoder extensions for the chrome"입니다.
확장 프로그램 스크린샷
Base64 encode/decode selected text 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A base64 encoder/decoder extensions for the chrome This is an open source software. https://github.com/17/chrome_base64
확장 프로그램 기본 정보
이름 | Base64 encode/decode selected text |
ID | gkdcpimagggbnjdkjhbnilfeiidhdhcl |
공식 URL | https://chromewebstore.google.com/detail/base64-encodedecode-selec/gkdcpimagggbnjdkjhbnilfeiidhdhcl |
설명 | A base64 encoder/decoder extensions for the chrome |
파일 크기 | 10.14 KB |
설치 횟수 | 11,600 |
현재 버전 | 0.2.1 |
최근 업데이트 | 2019-01-28 |
출시 날짜 | 2019-01-25 |
평점 | 2.88/5 총 8 개의 평점 |
개발자 | Jase |
결제 유형 | free |
지원되는 언어 | 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" } } |