Instant Developer Cloud Screenshot Extension

Take screenshots from Instant Developer Cloud applications when sending feedback.

Τι είναι το Instant Developer Cloud Screenshot Extension;

Το Instant Developer Cloud Screenshot Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον InstantDeveloper, και η κύρια λειτουργία του είναι "Take screenshots from Instant Developer Cloud applications when sending feedback.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Instant Developer Cloud Screenshot Extension

Λήψη αρχείων επέκτασης Instant Developer Cloud Screenshot Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Instant Developer Cloud Screenshot Extension Instant Developer Cloud Screenshot Extension
ID cbhgfhmihejgdpfeclnhkjmmjhhfmdom
Επίσημο URL https://chromewebstore.google.com/detail/instant-developer-cloud-s/cbhgfhmihejgdpfeclnhkjmmjhhfmdom
Περιγραφή Take screenshots from Instant Developer Cloud applications when sending feedback.
Μέγεθος Αρχείου 13.14 KB
Αριθμός Εγκαταστάσεων 64
Τρέχουσα Έκδοση 2.1
Τελευταία Ενημέρωση 2021-05-08
Ημερομηνία Δημοσίευσης 2021-05-06
Προγραμματιστής InstantDeveloper
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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
}