Unicode Inspector

Break down strings into unicode codepoints

什么是Unicode Inspector?

Unicode Inspector是由fizbin开发的Chrome扩展程序,该扩展的主要功能是“Break down strings into unicode codepoints”。

扩展截图

screenshot
screenshot
screenshot

下载Unicode Inspector扩展crx文件

下载Unicode Inspector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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
}