Unicode Inspector

Break down strings into unicode codepoints

Unicode Inspectorคืออะไร?

Unicode Inspector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fizbin และคุณลักษณะหลักของมันคือ "Break down strings into unicode codepoints"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unicode Inspector

ดาวน์โหลดไฟล์ส่วนขยาย 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
}