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文件
下载PHP Error Alert扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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                     扩展基本信息
| 名称 |   |  
| 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
}  |  |