GitHub Emojifier for Twemoji

Converts Emoji on GitHub to Twitter-style Emoji

Co to jest GitHub Emojifier for Twemoji?

GitHub Emojifier for Twemoji to rozszerzenie Chrome opracowane przez trmcnvn, a jego główną funkcją jest „Converts Emoji on GitHub to Twitter-style Emoji”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GitHub Emojifier for Twemoji

Pobierz pliki rozszerzeń GitHub Emojifier for Twemoji 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 switches GitHub's Apple-style emoji over to the Twitter-style emoji!                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Emojifier for Twemoji GitHub Emojifier for Twemoji
ID eebpgkfleghhfjhnfgpmhdcgiclaflgi
Oficjalny URL https://chromewebstore.google.com/detail/github-emojifier-for-twem/eebpgkfleghhfjhnfgpmhdcgiclaflgi
Opis Converts Emoji on GitHub to Twitter-style Emoji
Rozmiar pliku 16.25 KB
Liczba instalacji 48
Aktualna Wersja 0.2.5
Ostatnia Aktualizacja 2017-02-09
Data Publikacji 2017-02-09
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper trmcnvn
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/vevix/github-emoji-switcher
Adres URL Strony Pomocy https://github.com/vevix/github-emoji-switcher
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Emojifier for Twemoji",
    "version": "0.2.5",
    "description": "Converts Emoji on GitHub to Twitter-style Emoji",
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.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_start",
            "js": [
                "scripts\/main.min.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "scripts\/content.min.js"
    ]
}