PHP Error Alert

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

Hvad er PHP Error Alert?

PHP Error Alert er en Chrome-udvidelse udviklet af https://interactivetools.com, og dens hovedfunktion er "Shows a notification alert if there's a PHP error.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download PHP Error Alert-udvidelses-CRX-fil

Download PHP Error Alert-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn PHP Error Alert PHP Error Alert
ID pkckpaaolokjkclbambhmcokaahignkc
Officiel URL https://chromewebstore.google.com/detail/php-error-alert/pkckpaaolokjkclbambhmcokaahignkc
Beskrivelse Shows a notification alert if there's a PHP error.
Filstørrelse 57.31 KB
Antal Installationer 1,343
Nuværende Version 1.5
Senest Opdateret 2016-02-26
Udgivelsesdato 2016-02-26
Bedømmelse 3.91/5 Samlet 11 Bedømmelser
Udvikler https://interactivetools.com
Betalingsmetode free
Udvidelseswebsted http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101
Hjælpeside-URL http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101
Understøttede Sprog 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
}