PHP Error Alert
Shows a notification alert if there's a PHP error.
Vad är PHP Error Alert?
PHP Error Alert är en Chrome-tillägg utvecklad av https://interactivetools.com, och dess huvudfunktion är "Shows a notification alert if there's a PHP error.".
Tilläggsskärmbilder
Ladda ner PHP Error Alert-förlängningens CRX-fil
Ladda ner PHP Error Alert-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | pkckpaaolokjkclbambhmcokaahignkc |
| Officiell webbadress | https://chromewebstore.google.com/detail/php-error-alert/pkckpaaolokjkclbambhmcokaahignkc |
| Beskrivning | Shows a notification alert if there's a PHP error. |
| Filstorlek | 57.31 KB |
| Antal Installationer | 1,343 |
| Aktuell Version | 1.5 |
| Senast Uppdaterad | 2016-02-26 |
| Publiceringsdatum | 2016-02-26 |
| Betyg | 3.91/5 Totalt 11 Betyg |
| Utvecklare | https://interactivetools.com |
| Betalningssätt | free |
| Tilläggswebbplats | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
| Hjälpsida URL | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
| Stödda Språk | 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
} | |