PHP Error Alert
Shows a notification alert if there's a PHP error.
PHP Error Alert là gì?
PHP Error Alert là một tiện ích mở rộng Chrome được phát triển bởi https://interactivetools.com, và tính năng chính của nó là "Shows a notification alert if there's a PHP error.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PHP Error Alert
Tải xuống các tệp mở rộng PHP Error Alert 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PHP Error Alert |
ID | pkckpaaolokjkclbambhmcokaahignkc |
URL Chính Thức | https://chromewebstore.google.com/detail/php-error-alert/pkckpaaolokjkclbambhmcokaahignkc |
Mô tả | Shows a notification alert if there's a PHP error. |
Kích Thước Tệp | 57.31 KB |
Số Lần Cài Đặt | 1,343 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2016-02-26 |
Ngày Phát Hành | 2016-02-26 |
Đánh Giá | 3.91/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | https://interactivetools.com |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
URL Trang Trợ Giúp | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
Ngôn Ngữ Được Hỗ Trợ | 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 } |