EmojiDisplay

This extension replaces emoticon text with the Apple Emojis.

EmojiDisplay là gì?

EmojiDisplay là một tiện ích mở rộng Chrome được phát triển bởi ranjotsingh, và tính năng chính của nó là "This extension replaces emoticon text with the Apple Emojis.".

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

Tải xuống các tệp mở rộng EmojiDisplay 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

                        This extension replaces emoticon text with the Apple Emojis.                    

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

Tên EmojiDisplay EmojiDisplay
ID doomojimaojclkcipjldpmdbiedgaoop
URL Chính Thức https://chrome.google.com/webstore/detail/emojidisplay/doomojimaojclkcipjldpmdbiedgaoop
Mô tả This extension replaces emoticon text with the Apple Emojis.
Kích Thước Tệp 9.82 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2017-11-02
Ngày Phát Hành 2017-11-02
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển ranjotsingh
Loại Thanh Toán free
Trang Web Mở Rộng https://www.ranjotsingh.com
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "EmojiDisplay",
    "description": "This extension replaces emoticon text with the Apple Emojis.",
    "version": "0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "script.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}