Unicode Inspector
Break down strings into unicode codepoints
Unicode Inspector란 무엇입니까?
Unicode Inspector은(는) fizbin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Break down strings into unicode codepoints"입니다.
확장 프로그램 스크린샷
Unicode Inspector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension is intended for people who look at strings on web pages and need to know what those strings really contain. (e.g., someone using a web-based computer forensics tool looking at potentially deliberately tricky command lines) This rips apart any highlighted text into its component Unicode code points, and shows how that text would be written in UTF-8 or UTF-16LE (UTF-16LE is what the Windows kernel uses for strings). It also allows one to edit UTF-8 or UTF-16 bytes and shows what strings they become. The byte representations can also use base64. To cut down on memory use, this extension loads Unicode names (pulled from the Unicode® Character Database) into memory as needed on a block-by-block basis, so there may be a tiny delay when looking up the first character of a given block. Preferences are saved with "Chrome sync"; the most recently viewed string is saved locally.
확장 프로그램 기본 정보
이름 | Unicode Inspector |
ID | ckmdmkehfjmcdfnepokgihljkmgekjed |
공식 URL | https://chromewebstore.google.com/detail/unicode-inspector/ckmdmkehfjmcdfnepokgihljkmgekjed |
설명 | Break down strings into unicode codepoints |
파일 크기 | 368 KB |
설치 횟수 | 307 |
현재 버전 | 1.3 |
최근 업데이트 | 2019-03-07 |
출시 날짜 | 2019-03-07 |
개발자 | fizbin |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/fizbin/unicode_inspector |
도움말 페이지 URL | https://github.com/fizbin/unicode_inspector/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Unicode Inspector", "version": "1.3", "description": "Break down strings into unicode codepoints", "permissions": [ "contextMenus", "activeTab", "storage" ], "background": { "scripts": [ "js\/util.js", "js\/get_block.js", "js\/background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "open_in_tab": false }, "browser_action": { "default_icon": { "16": "icons\/unidecode16.png", "32": "icons\/unidecode32.png", "48": "icons\/unidecode48.png", "128": "icons\/unidecode128.png" }, "default_title": "Analyze selected text", "default_popup": "popup.html?popup=true" }, "icons": { "16": "icons\/unidecode16.png", "32": "icons\/unidecode32.png", "48": "icons\/unidecode48.png", "128": "icons\/unidecode128.png" }, "manifest_version": 2 } |