Draw Attention for Zopim

Blinks the taskbar on Zopim title change

Co to jest Draw Attention for Zopim?

Draw Attention for Zopim to rozszerzenie Chrome opracowane przez Jan Gruncl, a jego główną funkcją jest „Blinks the taskbar on Zopim title change”.

Pobierz plik CRX rozszerzenia Draw Attention for Zopim

Pobierz pliki rozszerzeń Draw Attention for Zopim 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

                        Blinks the taskbar on Zopim title change                    

Podstawowe informacje o rozszerzeniu

Nazwa Draw Attention for Zopim Draw Attention for Zopim
ID ccekiingfbplajbggamagmeckpaoffim
Oficjalny URL https://chromewebstore.google.com/detail/draw-attention-for-zopim/ccekiingfbplajbggamagmeckpaoffim
Opis Blinks the taskbar on Zopim title change
Rozmiar pliku 3.82 KB
Liczba instalacji 31
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-05-25
Data Publikacji 2016-05-25
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Jan Gruncl
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": "Draw Attention for Zopim",
    "description": "Blinks the taskbar on Zopim title change",
    "version": "1.0",
    "permissions": [
        "https:\/\/*.zopim.com\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.zopim.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}