PHP Error Alert
Shows a notification alert if there's a PHP error.
Co to jest PHP Error Alert?
PHP Error Alert to rozszerzenie Chrome opracowane przez https://interactivetools.com, a jego główną funkcją jest „Shows a notification alert if there's a PHP error.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia PHP Error Alert
Pobierz pliki rozszerzeń PHP Error Alert w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | PHP Error Alert |
ID | pkckpaaolokjkclbambhmcokaahignkc |
Oficjalny URL | https://chromewebstore.google.com/detail/php-error-alert/pkckpaaolokjkclbambhmcokaahignkc |
Opis | Shows a notification alert if there's a PHP error. |
Rozmiar pliku | 57.31 KB |
Liczba instalacji | 1,343 |
Aktualna Wersja | 1.5 |
Ostatnia Aktualizacja | 2016-02-26 |
Data Publikacji | 2016-02-26 |
Ocena | 3.91/5 Łącznie 11 Oceny |
Deweloper | https://interactivetools.com |
Typ Płatności | free |
Strona Rozszerzenia | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
Adres URL Strony Pomocy | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
Obsługiwane Języki | 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 } |