Emojify Everything

There aren't enough emojis in your websites. This extension fixes that.

Emojify Everything란 무엇입니까?

Emojify Everything은(는) jasonetco에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "There aren't enough emojis in your websites. This extension fixes that."입니다.

확장 프로그램 스크린샷

screenshot

Emojify Everything 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Replaces words in the webpages you visit with the corresponding emoji. You will either absolutely love or absolutely hate this.                    

확장 프로그램 기본 정보

이름 Emojify Everything Emojify Everything
ID hkahpmfkdfeceiiklfbkalcpbceccjco
공식 URL https://chromewebstore.google.com/detail/emojify-everything/hkahpmfkdfeceiiklfbkalcpbceccjco
설명 There aren't enough emojis in your websites. This extension fixes that.
파일 크기 36.48 KB
설치 횟수 39
현재 버전 1.1.5
최근 업데이트 2017-03-19
출시 날짜 2017-03-18
평점 5.00/5 총 2 개의 평점
개발자 jasonetco
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/JasonEtco/emojify-everything
도움말 페이지 URL https://github.com/JasonEtco/emojify-everything/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.1.5",
    "minimum_chrome_version": "49",
    "name": "Emojify Everything",
    "short_name": "Emojification",
    "description": "There aren't enough emojis in your websites. This extension fixes that.",
    "author": "Jason Etcovitch",
    "homepage_url": "https:\/\/github.com\/JasonEtco\/emojify-everything",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Emojify Everything",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/simpleEmojis.js",
                "js\/emojis.js",
                "main.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}