DHTMLConsole

This allows you to send message from your server via headers to the dhtmlconsole developer panel

DHTMLConsole क्या है?

DHTMLConsole https://www.africoders.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This allows you to send message from your server via headers to the dhtmlconsole developer panel"।

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

screenshot

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

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

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

                        This plugin allows you to send a message from your web server (directly by running a server script or making an ajax call) to your browser by using an HTTP Header.

The only rule is that you need to send custom HTTP headers from your server with the name of the header starting with X-DHTML-CONSOLE.

To send a message from a PHP script to the browser, this implementation will suffice:



As of version 0.3, you can now do javaScript alerts



As of version 0.3, you can clear the console from server by:



To send multiple messages in PHP:

                    

एक्सटेंशन की मूल जानकारी

नाम DHTMLConsole DHTMLConsole
ID jojehgiefnbpeljgiofpdmmdeklckbdd
आधिकारिक URL https://chromewebstore.google.com/detail/dhtmlconsole/jojehgiefnbpeljgiofpdmmdeklckbdd
विवरण This allows you to send message from your server via headers to the dhtmlconsole developer panel
फ़ाइल का आकार 357 KB
स्थापना संख्या 288
वर्तमान संस्करण 0.4
अंतिम अपडेट 2016-01-19
प्रकाशन तिथि 2016-01-19
रेटिंग 4.00/5 कुल 5 रेटिंग्स
डेवलपर https://www.africoders.com
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.africoders.com/forum/dhtmlconsole
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DHTMLConsole",
    "version": "0.4",
    "description": "This allows you to send message from your server via headers to the dhtmlconsole developer panel",
    "devtools_page": "devtools.html",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "DHTMLConsole"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}