Emojme: Emoji Anywhere

Find :emoji: in web pages and replace them with the little image you're used to seeing in slack

Emojme: Emoji Anywhere란 무엇입니까?

Emojme: Emoji Anywhere은(는) Jack Ellenberger에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find :emoji: in web pages and replace them with the little image you're used to seeing in slack"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Emojme: Emoji Anywhere 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Slack custom emoji are excellent, but until now they could only be used in slack. When you want to whip out a sassy :oh_is_that_so: or a quizzical :pikathonk: in that github comment, you have been entirely out of luck.

With this extension, you've lucked in to a fix for that terrible existential problem; you can bring your Slack custom emoji with you, wherever you go in Chrome. There are a few primary functions:

1) Expanding existing emoji-formatted text into actual emoji, e.g. turning `:parrot:` into that little ugly slug thing that does not actually look like a parrot, and

2) Searching for and inserting emoji as rich content, whether that means a link to the emoji url, an html ``, or a markdown image. Activate search using the `:` prefix in the chrome omnibar.

3) More easily retrieving critical emoji-related information from Slack, such as your user authentication information, which can be used with many open source projects, including [emojme](https://github.com/jackellenberger/emojme)                    

확장 프로그램 기본 정보

이름 Emojme: Emoji Anywhere Emojme: Emoji Anywhere
ID nbnaglaclijdfidbinlcnfdbikpbdkog
공식 URL https://chromewebstore.google.com/detail/emojme-emoji-anywhere/nbnaglaclijdfidbinlcnfdbikpbdkog
설명 Find :emoji: in web pages and replace them with the little image you're used to seeing in slack
파일 크기 1.87 MB
설치 횟수 119
현재 버전 2.0.0
최근 업데이트 2021-07-21
출시 날짜 2020-05-07
평점 5.00/5 총 1 개의 평점
개발자 Jack Ellenberger
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jackellenberger/emojme-emoji-anywhere
도움말 페이지 URL https://github.com/jackellenberger/emojme-emoji-anywhere/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Emojme: Emoji Anywhere",
    "version": "2.0.0",
    "description": "Find :emoji: in web pages and replace them with the little image you're used to seeing in slack",
    "author": "Jack Ellenberger ",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self'; object-src 'self'; img-src 'self' data: https:\/\/emoji.slack-edge.com",
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "https:\/\/*.slack.com\/",
        "clipboardWrite",
        "clipboardRead",
        "cookies"
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "64": "images\/icon_64.png",
            "128": "images\/icon_128.png"
        },
        "default_title": "Emojme: Emoji Anywhere -- user ':' in omnibox to search",
        "default_popup": "popup.html"
    },
    "omnibox": {
        "keyword": ":"
    }
}