Instant Developer Cloud Screenshot Extension

Take screenshots from Instant Developer Cloud applications when sending feedback.

¿Qué es Instant Developer Cloud Screenshot Extension?

Instant Developer Cloud Screenshot Extension es una extensión de Chrome desarrollada por InstantDeveloper, y su función principal es "Take screenshots from Instant Developer Cloud applications when sending feedback.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Instant Developer Cloud Screenshot Extension

Descarga archivos de extensión Instant Developer Cloud Screenshot Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Instant Developer Cloud Screenshot Extension Instant Developer Cloud Screenshot Extension
ID cbhgfhmihejgdpfeclnhkjmmjhhfmdom
URL Oficial https://chromewebstore.google.com/detail/instant-developer-cloud-s/cbhgfhmihejgdpfeclnhkjmmjhhfmdom
Descripción Take screenshots from Instant Developer Cloud applications when sending feedback.
Tamaño del Archivo 13.14 KB
Cantidad de Instalaciones 64
Versión Actual 2.1
Última Actualización 2021-05-08
Fecha de Publicación 2021-05-06
Desarrollador InstantDeveloper
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
}