Bee Moji

Express more with Emojis

Bee Moji là gì?

Bee Moji là một tiện ích mở rộng Chrome được phát triển bởi https://beemoji.fun, và tính năng chính của nó là "Express more with Emojis".

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

screenshot
screenshot
screenshot

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

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

                        BeeMoji is the first Chrome extension that suggests Emojis as you type. You can choose one Emoji from suggestions or paste them all.

Express more with Emojis!                    

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

Tên Bee Moji Bee Moji
ID oaapobiilleecjcpbemnebijmaocanpi
URL Chính Thức https://chromewebstore.google.com/detail/bee-moji/oaapobiilleecjcpbemnebijmaocanpi
Mô tả Express more with Emojis
Kích Thước Tệp 1.7 MB
Số Lần Cài Đặt 387
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2018-05-30
Ngày Phát Hành 2018-05-30
Đánh Giá 4.40/5 Tổng số 30 Đánh Giá
Nhà Phát Triển https://beemoji.fun
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://beemoji.fun/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bee Moji",
    "short_name": "Bee Moji",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "Express more with Emojis",
    "author": "Zviad Sichinava",
    "homepage_url": "http:\/\/studiofuturist.com\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "web_accessible_resources": [
        "src\/assets\/emoji.json",
        "src\/inject\/contentscript.js",
        "src\/inject\/popup.js"
    ],
    "browser_action": {
        "default_icon": "icons\/popup.png",
        "default_popup": "src\/inject\/popup.html"
    },
    "permissions": [
        "clipboardRead"
    ],
    "background": {
        "scripts": [
            "src\/inject\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/eblock.js",
                "src\/inject\/contentscript.js"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}