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 InstantDeveloper द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Take screenshots from Instant Developer Cloud applications when sending feedback."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Instant Developer Cloud Screenshot Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}