PHP Error Alert
Shows a notification alert if there's a PHP error.
PHP Error Alert란 무엇입니까?
PHP Error Alert은(는) https://interactivetools.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows a notification alert if there's a PHP error."입니다.
확장 프로그램 스크린샷
PHP Error Alert 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Developers, never miss a PHP error again! This chrome plugin shows a popup any time a page contains a PHP error, even hard to spot PHP error hidden in HTML tags that aren't visible without viewing source. Post any feedback or suggestions in our forum here: http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101
확장 프로그램 기본 정보
이름 | PHP Error Alert |
ID | pkckpaaolokjkclbambhmcokaahignkc |
공식 URL | https://chromewebstore.google.com/detail/php-error-alert/pkckpaaolokjkclbambhmcokaahignkc |
설명 | Shows a notification alert if there's a PHP error. |
파일 크기 | 57.31 KB |
설치 횟수 | 1,343 |
현재 버전 | 1.5 |
최근 업데이트 | 2016-02-26 |
출시 날짜 | 2016-02-26 |
평점 | 3.91/5 총 11 개의 평점 |
개발자 | https://interactivetools.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
도움말 페이지 URL | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PHP Error Alert", "version": "1.5", "description": "Shows a notification alert if there's a PHP error.", "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "warning-19.png", "default_popup": "pop-up-menu.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery-2.2.1.min.js", "js\/jquery.noty.js", "js\/topRight.js", "js\/default.js", "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "48": "warning-48.png", "128": "warning-128.png" }, "permissions": [ "storage" ], "manifest_version": 2 } |