GitHub Emoji

A chrome extension for the github emoji picker with fun.

Что такое GitHub Emoji?

GitHub Emoji - это расширение Chrome, разработанное Unknown, и его основная функция - "A chrome extension for the github emoji picker with fun.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения GitHub Emoji

Скачайте файлы расширений GitHub Emoji в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        See https://github.com/FishPlusOrange/github-emoji for details.                    

Основная информация о расширении

Название GitHub Emoji GitHub Emoji
ID pfhcnffadoajdcedindnjcladkokgfpo
Официальный URL https://chromewebstore.google.com/detail/github-emoji/pfhcnffadoajdcedindnjcladkokgfpo
Описание A chrome extension for the github emoji picker with fun.
Размер файла 907 KB
Количество установок 37
Текущая Версия 1.1.1
Последнее Обновление 2020-03-30
Дата публикации 2020-03-30
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Emoji",
    "version": "1.1.1",
    "manifest_version": 2,
    "description": "A chrome extension for the github emoji picker with fun.",
    "homepage_url": "https:\/\/github.com\/FishPlusOrange\/github-emoji",
    "icons": {
        "16": "images\/octocat.png",
        "48": "images\/octocat.png",
        "128": "images\/octocat.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*",
                "*:\/\/gist.github.com\/*"
            ],
            "js": [
                "scripts\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_title": "GitHub Emoji",
        "default_popup": "popup.html"
    }
}