PHP Error Alert
Shows a notification alert if there's a PHP error.
O que é PHP Error Alert?
PHP Error Alert é uma extensão do Chrome desenvolvida por https://interactivetools.com, e sua principal característica é "Shows a notification alert if there's a PHP error.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão PHP Error Alert
Baixe arquivos de extensão PHP Error Alert no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | PHP Error Alert |
ID | pkckpaaolokjkclbambhmcokaahignkc |
URL Oficial | https://chromewebstore.google.com/detail/php-error-alert/pkckpaaolokjkclbambhmcokaahignkc |
Descrição | Shows a notification alert if there's a PHP error. |
Tamanho do Arquivo | 57.31 KB |
Contagem de Instalações | 1,343 |
Versão Atual | 1.5 |
Última Atualização | 2016-02-26 |
Data de Publicação | 2016-02-26 |
Classificação | 3.91/5 Total de 11 Avaliações |
Desenvolvedor | https://interactivetools.com |
Tipo de Pagamento | free |
Site da Extensão | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
URL da Página de Ajuda | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
Idiomas Suportados | 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 } |