GitHub Emoji

A chrome extension for the github emoji picker with fun.

What is GitHub Emoji?

GitHub Emoji is a Chrome extension developed by Unknown, and its main feature is "A chrome extension for the github emoji picker with fun.".

Extension Screenshots

screenshot

Download GitHub Emoji Extension CRX File

Download GitHub Emoji extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name GitHub Emoji GitHub Emoji
ID pfhcnffadoajdcedindnjcladkokgfpo
Official URL https://chromewebstore.google.com/detail/github-emoji/pfhcnffadoajdcedindnjcladkokgfpo
Description A chrome extension for the github emoji picker with fun.
File Size 907 KB
Installation Count 37
Current Version 1.1.1
Last Updated 2020-03-30
Publish Date 2020-03-30
Developer Unknown
Payment Type free
Supported Languages 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"
    }
}