PHP Error Alert

Shows a notification alert if there's a PHP error.

What is PHP Error Alert?

PHP Error Alert is a Chrome extension developed by https://interactivetools.com, and its main feature is "Shows a notification alert if there's a PHP error.".

Extension Screenshots

screenshot
screenshot

Download PHP Error Alert Extension CRX File

Download PHP Error Alert extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name PHP Error Alert PHP Error Alert
ID pkckpaaolokjkclbambhmcokaahignkc
Official URL https://chromewebstore.google.com/detail/php-error-alert/pkckpaaolokjkclbambhmcokaahignkc
Description Shows a notification alert if there's a PHP error.
File Size 57.31 KB
Installation Count 1,343
Current Version 1.5
Last Updated 2016-02-26
Publish Date 2016-02-26
Rating 3.91/5 Total 11 Ratings
Developer https://interactivetools.com
Payment Type free
Extension Website http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101
Help Page URL http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101
Supported Languages 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
}