DHTMLConsole

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

Qu'est-ce que DHTMLConsole ?

DHTMLConsole est une extension Chrome développée par https://www.africoders.com, et sa fonction principale est "This allows you to send message from your server via headers to the dhtmlconsole developer panel".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension DHTMLConsole

Téléchargez les fichiers d'extension DHTMLConsole au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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:

                    

Informations de Base sur l'Extension

Nom DHTMLConsole DHTMLConsole
ID jojehgiefnbpeljgiofpdmmdeklckbdd
URL Officiel https://chromewebstore.google.com/detail/dhtmlconsole/jojehgiefnbpeljgiofpdmmdeklckbdd
Description This allows you to send message from your server via headers to the dhtmlconsole developer panel
Taille du Fichier 357 KB
Nombre d'Installations 288
Version Actuelle 0.4
Dernière Mise à Jour 2016-01-19
Date de Publication 2016-01-19
Évaluation 4.00/5 Total 5 Évaluations
Développeur https://www.africoders.com
Type de Paiement free
Site Web de l'Extension http://www.africoders.com/forum/dhtmlconsole
Langues Prises en Charge 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'"
}