Chromoji - Emojis for Google Chrome

Display emojis in Chrome

Co to jest Chromoji - Emojis for Google Chrome?

Chromoji - Emojis for Google Chrome to rozszerzenie Chrome opracowane przez ahmedsohag3283, a jego główną funkcją jest „Display emojis in Chrome”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Chromoji - Emojis for Google Chrome

Pobierz pliki rozszerzeń Chromoji - Emojis for Google Chrome w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Show emojis in your browser.

Currently supports Twitter, EmojiOne, Apple and Google emojis.

Create post facebook and twitter with your emojis                    

Podstawowe informacje o rozszerzeniu

Nazwa Chromoji - Emojis for Google Chrome Chromoji - Emojis for Google Chrome
ID negakbijaemdgbhklopmghphgaeadmpo
Oficjalny URL https://chromewebstore.google.com/detail/chromoji-emojis-for-googl/negakbijaemdgbhklopmghphgaeadmpo
Opis Display emojis in Chrome
Rozmiar pliku 26.12 MB
Liczba instalacji 20,000
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2024-01-09
Data Publikacji 2016-10-26
Ocena 3.89/5 Łącznie 146 Oceny
Deweloper ahmedsohag3283
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://sites.google.com/view/privacy-policy-of-chromoji/home
Obsługiwane Języki 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:\/\/*\/*"
            ]
        }
    ]
}