PHP Error Alert

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

Qu'est-ce que PHP Error Alert ?

PHP Error Alert est une extension Chrome développée par https://interactivetools.com, et sa fonction principale est "Shows a notification alert if there's a PHP error.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension PHP Error Alert

Téléchargez les fichiers d'extension PHP Error Alert au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom PHP Error Alert PHP Error Alert
ID pkckpaaolokjkclbambhmcokaahignkc
URL Officiel https://chromewebstore.google.com/detail/php-error-alert/pkckpaaolokjkclbambhmcokaahignkc
Description Shows a notification alert if there's a PHP error.
Taille du Fichier 57.31 KB
Nombre d'Installations 1,343
Version Actuelle 1.5
Dernière Mise à Jour 2016-02-26
Date de Publication 2016-02-26
Évaluation 3.91/5 Total 11 Évaluations
Développeur https://interactivetools.com
Type de Paiement free
Site Web de l'Extension http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101
URL de la Page d'Aide http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101
Langues Prises en Charge 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
}