Instant Developer Cloud Screenshot Extension

Take screenshots from Instant Developer Cloud applications when sending feedback.

Co to jest Instant Developer Cloud Screenshot Extension?

Instant Developer Cloud Screenshot Extension to rozszerzenie Chrome opracowane przez InstantDeveloper, a jego główną funkcją jest „Take screenshots from Instant Developer Cloud applications when sending feedback.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Instant Developer Cloud Screenshot Extension

Pobierz pliki rozszerzeń Instant Developer Cloud Screenshot Extension 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

                        This extension is used to capture screenshots of the frame showing the application and it's used by Instant Developer Cloud to attach the screenshots to the feedback.                    

Podstawowe informacje o rozszerzeniu

Nazwa Instant Developer Cloud Screenshot Extension Instant Developer Cloud Screenshot Extension
ID cbhgfhmihejgdpfeclnhkjmmjhhfmdom
Oficjalny URL https://chromewebstore.google.com/detail/instant-developer-cloud-s/cbhgfhmihejgdpfeclnhkjmmjhhfmdom
Opis Take screenshots from Instant Developer Cloud applications when sending feedback.
Rozmiar pliku 13.14 KB
Liczba instalacji 64
Aktualna Wersja 2.1
Ostatnia Aktualizacja 2021-05-08
Data Publikacji 2021-05-06
Deweloper InstantDeveloper
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Instant Developer Cloud Screenshot Extension",
    "version": "2.1",
    "description": "Take screenshots from Instant Developer Cloud applications when sending feedback.",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:8081\/*",
                "https:\/\/*.instantdevelopercloud.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Screenshot"
    },
    "permissions": [
        ""
    ],
    "host_permissions": [
        "http:\/\/localhost:8081\/*",
        "https:\/\/*.instantdevelopercloud.com\/*"
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:8081\/*",
            "https:\/\/*.instantdevelopercloud.com\/*"
        ]
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "manifest_version": 2
}