HipChat Emot

Add a list of available HipChat emoticons for easy use as well as some nice hot keys.

Co to jest HipChat Emot?

HipChat Emot to rozszerzenie Chrome opracowane przez Jonathan Gertig, a jego główną funkcją jest „Add a list of available HipChat emoticons for easy use as well as some nice hot keys.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia HipChat Emot

Pobierz pliki rozszerzeń HipChat Emot 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

                        Add a list of available HipChat emoticons to the Hipchat web app for easy use as well as some nice hot keys. It is open source on Github at github.com/jcgertig/hipchat-emot 

Update:

Now using sync storage never be redirected again! Well once :). To update emots in storage you can go to hipchat-emoticons.nyh.name checkout the author at henrik.nyh.se

Enter to submit or shift enter for new line.

Fixed @ linking autocomplete bug                    

Podstawowe informacje o rozszerzeniu

Nazwa HipChat Emot HipChat Emot
ID bbnfjminggbnmhkhjpnadlgpnjchbppa
Oficjalny URL https://chrome.google.com/webstore/detail/hipchat-emot/bbnfjminggbnmhkhjpnadlgpnjchbppa
Opis Add a list of available HipChat emoticons for easy use as well as some nice hot keys.
Rozmiar pliku 39.24 KB
Liczba instalacji 27
Aktualna Wersja 0.2.0
Ostatnia Aktualizacja 2014-02-02
Data Publikacji 2014-02-02
Ocena 2.67/5 Łącznie 6 Oceny
Deweloper Jonathan Gertig
Typ Płatności free
Strona Rozszerzenia https://github.com/jcgertig/hipchat-emot
Adres URL Strony Pomocy https://github.com/jcgertig/hipchat-emot
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HipChat Emot",
    "short_name": "HipChat Emot",
    "description": "Add a list of available HipChat emoticons for easy use as well as some nice hot keys.",
    "version": "0.2.0",
    "author": "Jonathan Gertig",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*.hipchat.com\/*",
        "https:\/\/*.hipchat.com\/*",
        "http:\/\/hipchat-emoticons.nyh.name\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.hipchat.com\/*",
                "https:\/\/*.hipchat.com\/*",
                "http:\/\/hipchat-emoticons.nyh.name\/"
            ],
            "js": [
                "content.js",
                "js\/jquery-2.1.0.min.js"
            ],
            "css": [
                "styling.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "25": "sweetjesus.png"
    },
    "web_accessible_resources": [
        "input.html",
        "js\/jquery-2.1.0.min.js",
        "bottom.png"
    ]
}