Instant Developer Cloud Screenshot Extension

Take screenshots from Instant Developer Cloud applications when sending feedback.

Wat is Instant Developer Cloud Screenshot Extension?

Instant Developer Cloud Screenshot Extension is een Chrome-extensie ontwikkeld door InstantDeveloper, en de belangrijkste functie is "Take screenshots from Instant Developer Cloud applications when sending feedback.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Instant Developer Cloud Screenshot Extension

Download Instant Developer Cloud Screenshot Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Instant Developer Cloud Screenshot Extension Instant Developer Cloud Screenshot Extension
ID cbhgfhmihejgdpfeclnhkjmmjhhfmdom
Officiële URL https://chromewebstore.google.com/detail/instant-developer-cloud-s/cbhgfhmihejgdpfeclnhkjmmjhhfmdom
Beschrijving Take screenshots from Instant Developer Cloud applications when sending feedback.
Bestandsgrootte 13.14 KB
Aantal Installaties 64
Huidige Versie 2.1
Laatst Bijgewerkt 2021-05-08
Publicatiedatum 2021-05-06
Ontwikkelaar InstantDeveloper
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}