PHP Error Alert
Shows a notification alert if there's a PHP error.
什麼是PHP Error Alert?
PHP Error Alert是由https://interactivetools.com開發的Chrome擴展程式,該擴展的主要功能是“Shows a notification alert if there's a PHP error.”。
擴展截圖
下載PHP Error Alert擴展crx文件
下載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 |
| 官方網址 | 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
} | |