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.」です。

拡張機能のスクリーンショット

screenshot
screenshot

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                    

拡張機能の基本情報

名前 PHP Error Alert PHP Error Alert
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
}