Chromoji - Emojis for Google Chrome

Display emojis in Chrome

Chromoji - Emojis for Google Chrome란 무엇입니까?

Chromoji - Emojis for Google Chrome은(는) ahmedsohag3283에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display emojis in Chrome"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Chromoji - Emojis for Google Chrome 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Show emojis in your browser.

Currently supports Twitter, EmojiOne, Apple and Google emojis.

Create post facebook and twitter with your emojis                    

확장 프로그램 기본 정보

이름 Chromoji - Emojis for Google Chrome Chromoji - Emojis for Google Chrome
ID negakbijaemdgbhklopmghphgaeadmpo
공식 URL https://chromewebstore.google.com/detail/chromoji-emojis-for-googl/negakbijaemdgbhklopmghphgaeadmpo
설명 Display emojis in Chrome
파일 크기 26.12 MB
설치 횟수 20,000
현재 버전 1.1.0
최근 업데이트 2024-01-09
출시 날짜 2016-10-26
평점 3.89/5 총 146 개의 평점
개발자 ahmedsohag3283
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://sites.google.com/view/privacy-policy-of-chromoji/home
지원되는 언어 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:\/\/*\/*"
            ]
        }
    ]
}