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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
}