Zi Screen

Browser screen shot, add task in trello

Co to jest Zi Screen?

Zi Screen to rozszerzenie Chrome opracowane przez zzzwebit, a jego główną funkcją jest „Browser screen shot, add task in trello”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Zi Screen

Pobierz pliki rozszerzeń Zi Screen 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

                        Zi Screen is a handy, modern service that allows to share  screenshots instantly via the Internet for IT Team. Create visual proofs for bug reports, add it in Trello or share. Capture entire webpage at once with Zi Screen extension for Chrome.                    

Podstawowe informacje o rozszerzeniu

Nazwa Zi Screen Zi Screen
ID aaljegneefjgmnkomeomkaoiledhgjcl
Oficjalny URL https://chromewebstore.google.com/detail/zi-screen/aaljegneefjgmnkomeomkaoiledhgjcl
Opis Browser screen shot, add task in trello
Rozmiar pliku 259 KB
Liczba instalacji 21
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2021-08-19
Data Publikacji 2021-07-29
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper zzzwebit
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://ziscreen.com/
Adres URL Strony Pomocy https://ziscreen.com/support
Adres URL Strony Polityki Prywatności https://ziscreen.com/privacy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.1",
    "name": "Zi Screen",
    "short_name": "ziscreen",
    "manifest_version": 3,
    "description": "Browser screen shot, add task in trello",
    "action": {
        "default_title": "Click to get an screen"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "inject.js",
                "build.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/fav-16.png",
        "32": "img\/fav-32.png",
        "48": "img\/fav-48.png",
        "96": "img\/fav-96.png",
        "128": "img\/fav-128.png",
        "256": "img\/fav-256.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}