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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find :emoji: in web pages and replace them with the little image you're used to seeing in slack"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Emojme: Emoji Anywhere एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": ":"
    }
}