Emby Companion

Show unread messages, status, and more for your Emby server.

Co to jest Emby Companion?

Emby Companion to rozszerzenie Chrome opracowane przez techywarrior, a jego główną funkcją jest „Show unread messages, status, and more for your Emby server.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Emby Companion

Pobierz pliki rozszerzeń Emby Companion 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

                        Get notified when there are unread notifications on your Emby server (Emby server install required, download at http://emby.media/ ) and read them without having to load up the Emby web client. It can also notify you when the server is inaccessible so you can restart it ASAP.

There is also a link in the header to take you to your Emby server web client for quick access in case you want to restart Emby, install plugins, or simply watch some TV or a movie.                    

Podstawowe informacje o rozszerzeniu

Nazwa Emby Companion Emby Companion
ID egofcbleniceaoleohckegkeepennpcn
Oficjalny URL https://chrome.google.com/webstore/detail/emby-companion/egofcbleniceaoleohckegkeepennpcn
Opis Show unread messages, status, and more for your Emby server.
Rozmiar pliku 252 KB
Liczba instalacji 925
Aktualna Wersja 1.9.0
Ostatnia Aktualizacja 2016-08-08
Data Publikacji 2016-08-08
Ocena 4.46/5 Łącznie 24 Oceny
Deweloper techywarrior
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Emby Companion",
    "short_name": "Emby Companion",
    "description": "Show unread messages, status, and more for your Emby server.",
    "author": "Techywarrior",
    "version": "1.9.0",
    "icons": {
        "16": "emby_ico_16.png",
        "48": "emby_ico_48.png",
        "128": "emby_ico_128.png"
    },
    "permissions": [
        "alarms",
        "contextMenus",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "mb3.png",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/jquery-2.2.4.min.js",
            "js\/common.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery-2.2.4.min.js",
                "js\/content_script.js"
            ]
        }
    ]
}