DHTMLConsole

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

什麼是DHTMLConsole?

DHTMLConsole是由https://www.africoders.com開發的Chrome擴展程式,該擴展的主要功能是“This allows you to send message from your server via headers to the dhtmlconsole developer panel”。

擴展截圖

screenshot

下載DHTMLConsole擴展crx文件

下載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
官方網址 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'"
}