DHTMLConsole

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

DHTMLConsole là gì?

DHTMLConsole là một tiện ích mở rộng Chrome được phát triển bởi https://www.africoders.com, và tính năng chính của nó là "This allows you to send message from your server via headers to the dhtmlconsole developer panel".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng DHTMLConsole

Tải xuống các tệp mở rộng DHTMLConsole dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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:

                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DHTMLConsole DHTMLConsole
ID jojehgiefnbpeljgiofpdmmdeklckbdd
URL Chính Thức https://chromewebstore.google.com/detail/dhtmlconsole/jojehgiefnbpeljgiofpdmmdeklckbdd
Mô tả This allows you to send message from your server via headers to the dhtmlconsole developer panel
Kích Thước Tệp 357 KB
Số Lần Cài Đặt 288
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2016-01-19
Ngày Phát Hành 2016-01-19
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://www.africoders.com
Loại Thanh Toán free
Trang Web Mở Rộng http://www.africoders.com/forum/dhtmlconsole
Ngôn Ngữ Được Hỗ Trợ 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'"
}