Chromoji - Emojis for Google Chrome

Display emojis in Chrome

What is Chromoji - Emojis for Google Chrome?

Chromoji - Emojis for Google Chrome is a Chrome extension developed by ahmedsohag3283, and its main feature is "Display emojis in Chrome".

Extension Screenshots

screenshot
screenshot

Download Chromoji - Emojis for Google Chrome Extension CRX File

Download Chromoji - Emojis for Google Chrome extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Show emojis in your browser.

Currently supports Twitter, EmojiOne, Apple and Google emojis.

Create post facebook and twitter with your emojis                    

Extension Basic Information

Name Chromoji - Emojis for Google Chrome Chromoji - Emojis for Google Chrome
ID negakbijaemdgbhklopmghphgaeadmpo
Official URL https://chromewebstore.google.com/detail/chromoji-emojis-for-googl/negakbijaemdgbhklopmghphgaeadmpo
Description Display emojis in Chrome
File Size 26.12 MB
Installation Count 20,000
Current Version 1.1.0
Last Updated 2024-01-09
Publish Date 2016-10-26
Rating 3.89/5 Total 146 Ratings
Developer ahmedsohag3283
Email [email protected]
Payment Type free
Privacy Policy Page URL https://sites.google.com/view/privacy-policy-of-chromoji/home
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Display emojis in Chrome",
    "version": "1.1.0",
    "manifest_version": 3,
    "name": "Chromoji - Emojis for Google Chrome",
    "icons": {
        "16": "data\/images\/icon-16.png",
        "48": "data\/images\/icon-48.png",
        "128": "data\/images\/icon-128.png"
    },
    "action": {
        "default_popup": "popup.html?chrome",
        "default_title": "Open"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "background": {
        "service_worker": "background-wrapper.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "data\/images\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}