GitHub Emoji

A chrome extension for the github emoji picker with fun.

Wat is GitHub Emoji?

GitHub Emoji is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "A chrome extension for the github emoji picker with fun.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie GitHub Emoji

Download GitHub Emoji-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam GitHub Emoji GitHub Emoji
ID pfhcnffadoajdcedindnjcladkokgfpo
Officiële URL https://chromewebstore.google.com/detail/github-emoji/pfhcnffadoajdcedindnjcladkokgfpo
Beschrijving A chrome extension for the github emoji picker with fun.
Bestandsgrootte 907 KB
Aantal Installaties 37
Huidige Versie 1.1.1
Laatst Bijgewerkt 2020-03-30
Publicatiedatum 2020-03-30
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
    }
}