GitHub Emoji

A chrome extension for the github emoji picker with fun.

GitHub Emojiとは何ですか?

GitHub EmojiはUnknownによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension for the github emoji picker with fun.」です。

拡張機能のスクリーンショット

screenshot

GitHub Emoji拡張機能のCRXファイルをダウンロード

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"
    }
}