Demoji

Expose a text description or emoji next to emoji images. Does not process free-text emoji.

Demoji là gì?

Demoji là một tiện ích mở rộng Chrome được phát triển bởi Ben Buchanan, và tính năng chính của nó là "Expose a text description or emoji next to emoji images. Does not process free-text emoji.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Demoji

Tải xuống các tệp mở rộng Demoji dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Demoji shows a text alternative for emoji images, if a text alternative is available or the image can be matched to an emoji name. Note that Demoji only expands emoji that have been published as custom images, it does not change emoji in general text or inside buttons (although it will try to add a title to emoji buttons).

By default this extension runs on all sites, you can change this in extension settings ("Site access").

Why? Well, ever wondered what the heck an emoji was? The graphic used was hard to see, or understand? This extension adds the text after the image to help. Sure, that might not help you understand what poodle-monkey-headblanket actually means to the person who wrote it; but at least you've got a slightly better shot!

NOTE: this extension does not demojify all emoji. It works when the element is an image, that image is identified as an emoji, and a text alternative is provided or can be reliably matched to an emoji name. This means that on some sites nothing will happen because they don't provide alternative descriptions, don't provide a reliable identifier of the intended emoji, or the emoji is just part of a text string.

Changelog:
1.2.0 - tuning frequency of updates, quieter logs, exclude buttons from demoji conversion but add a title to them if none exists
1.1.0 - reverted label style to simple brackets inherting local text style, fix for emoji without enough space to render, improved handling for web apps with frequent DOM updates, added aria-describedby to link the target emoji with its label
1.0.0 - now runs on all sites, adds 'flag' style label, when no alt text is available will attempt to show the emoji name instead
0.4.0 - original version that only ran on github and campfire                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Demoji Demoji
ID jabjlgenmoheljailheghhiifkpfllao
URL Chính Thức https://chromewebstore.google.com/detail/demoji/jabjlgenmoheljailheghhiifkpfllao
Mô tả Expose a text description or emoji next to emoji images. Does not process free-text emoji.
Kích Thước Tệp 54.2 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2023-02-28
Ngày Phát Hành 2013-12-30
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Ben Buchanan
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://bitbucket.org/200ok/demoji
URL Trang Trợ Giúp https://bitbucket.org/200ok/demoji/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Demoji",
    "description": "Expose a text description or emoji next to emoji images. Does not process free-text emoji.",
    "version": "1.2.0",
    "manifest_version": 3,
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "demoji.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "emoji-en-US.json"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        }
    }
}