Github Custom Emoji Addiction

When you need to have more then the normal emojis in your life.

Was ist Github Custom Emoji Addiction?

Github Custom Emoji Addiction ist eine Chrome-Erweiterung, die von roush.kyle entwickelt wurde, und ihr Hauptmerkmal ist "When you need to have more then the normal emojis in your life.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Github Custom Emoji Addiction-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github Custom Emoji Addiction-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        When you want to have more emojis in your life but Github only supports the standard ones. Now you can define your own emojis and you can use the Github emoji syntax and it will auto fill in the emoji with image you have defined.                    

Grundlegende Informationen zur Erweiterung

Name Github Custom Emoji Addiction Github Custom Emoji Addiction
ID ldgifpnadmnmiibmmkmhdidfpljlmjmk
Offizielle URL https://chromewebstore.google.com/detail/github-custom-emoji-addic/ldgifpnadmnmiibmmkmhdidfpljlmjmk
Beschreibung When you need to have more then the normal emojis in your life.
Dateigröße 83.48 KB
Installationsanzahl 21
Aktuelle Version 1.5.4
Letztes Update 2020-01-09
Veröffentlichungsdatum 2020-01-08
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler roush.kyle
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "When you need to have more then the normal emojis in your life.",
    "manifest_version": 2,
    "name": "Github Custom Emoji Addiction",
    "version": "1.5.4",
    "homepage_url": "https:\/\/github.com\/kyleroush\/Custom-Emoji-addiction",
    "icons": {
        "48": "logo.png"
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_title": "Github Custom Emoji Addiction Settings",
        "default_popup": "popup\/Settings.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "dependencies\/jquery.js",
                "dependencies\/caret.js",
                "dependencies\/atwho.js",
                "script.js",
                "emojis.js"
            ],
            "css": [
                "dependencies\/atwho.css",
                "githubEmojiSuggestorStyle.css"
            ]
        }
    ]
}