PHP Error Alert
Shows a notification alert if there's a PHP error.
Что такое PHP Error Alert?
PHP Error Alert - это расширение Chrome, разработанное https://interactivetools.com, и его основная функция - "Shows a notification alert if there's a PHP error.".
Снимки экрана расширения
Скачать файл CRX расширения PHP Error Alert
Скачайте файлы расширений PHP Error Alert в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| ID | pkckpaaolokjkclbambhmcokaahignkc |
| Официальный URL | https://chromewebstore.google.com/detail/php-error-alert/pkckpaaolokjkclbambhmcokaahignkc |
| Описание | Shows a notification alert if there's a PHP error. |
| Размер файла | 57.31 KB |
| Количество установок | 1,343 |
| Текущая Версия | 1.5 |
| Последнее Обновление | 2016-02-26 |
| Дата публикации | 2016-02-26 |
| Рейтинг | 3.91/5 Всего 11 оценок |
| Разработчик | https://interactivetools.com |
| Тип оплаты | free |
| Официальный сайт расширения | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
| URL страницы помощи | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
| Поддерживаемые языки | 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
} | |