DHTMLConsole

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

Τι είναι το DHTMLConsole;

Το DHTMLConsole είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.africoders.com, και η κύρια λειτουργία του είναι "This allows you to send message from your server via headers to the dhtmlconsole developer panel".

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

screenshot

Λήψη αρχείου CRX της επέκτασης DHTMLConsole

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

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

                        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'"
}