PHP Error Alert
Shows a notification alert if there's a PHP error.
Was ist PHP Error Alert?
PHP Error Alert ist eine Chrome-Erweiterung, die von https://interactivetools.com entwickelt wurde, und ihr Hauptmerkmal ist "Shows a notification alert if there's a PHP error.".
Erweiterungsscreenshots
PHP Error Alert-Erweiterungs-CRX-Datei herunterladen
Laden Sie PHP Error Alert-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pkckpaaolokjkclbambhmcokaahignkc |
| Offizielle URL | https://chromewebstore.google.com/detail/php-error-alert/pkckpaaolokjkclbambhmcokaahignkc |
| Beschreibung | Shows a notification alert if there's a PHP error. |
| Dateigröße | 57.31 KB |
| Installationsanzahl | 1,343 |
| Aktuelle Version | 1.5 |
| Letztes Update | 2016-02-26 |
| Veröffentlichungsdatum | 2016-02-26 |
| Bewertung | 3.91/5 Insgesamt 11 Bewertungen |
| Entwickler | https://interactivetools.com |
| Zahlungsart | free |
| Erweiterungswebsite | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
| Hilfeseite URL | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
| Unterstützte Sprachen | 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
} | |