Hangouts GitHub Emojifier

Converts Emoji on GitHub to Google-style Emoji

Co to jest Hangouts GitHub Emojifier?

Hangouts GitHub Emojifier to rozszerzenie Chrome opracowane przez Paul Betts, a jego główną funkcją jest „Converts Emoji on GitHub to Google-style Emoji”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Hangouts GitHub Emojifier

Pobierz pliki rozszerzeń Hangouts GitHub Emojifier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This Extension works on GitHub.com to replace all of their Apple-style Emoji with Google-style Emoji.                    

Podstawowe informacje o rozszerzeniu

Nazwa Hangouts GitHub Emojifier Hangouts GitHub Emojifier
ID gnmkclfcadpmdkbihlgdebnnlolabgll
Oficjalny URL https://chromewebstore.google.com/detail/hangouts-github-emojifier/gnmkclfcadpmdkbihlgdebnnlolabgll
Opis Converts Emoji on GitHub to Google-style Emoji
Rozmiar pliku 24.28 KB
Liczba instalacji 176
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2015-03-08
Data Publikacji 2015-03-07
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper Paul Betts
Typ Płatności free
Strona Rozszerzenia https://github.com/paulcbetts/github-emoji-switcher
Adres URL Strony Pomocy https://github.com/paulcbetts/github-emoji-switcher/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hangouts GitHub Emojifier",
    "description": "Converts Emoji on GitHub to Google-style Emoji",
    "version": "0.1.0",
    "icons": {
        "16": "img\/icon_16.png",
        "32": "img\/icon_32.png",
        "48": "img\/icon_48.png",
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png"
    },
    "permissions": [
        "http:\/\/*.github.com\/*",
        "https:\/\/*.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "scripts\/main.min.js"
            ]
        }
    ]
}