ServerLog
Display server side logs in Chrome dev tools and browser Console.
ServerLogとは何ですか?
ServerLogはSky.Sunによって開発されたChromeの拡張機能で、その主な機能は「Display server side logs in Chrome dev tools and browser Console.」です。
拡張機能のスクリーンショット
ServerLog拡張機能のCRXファイルをダウンロード
ServerLog拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Supported extensions for ServerLog library (https://github.com/eshengsky/ServerLog), used to view server side logs in Chrome dev tools and Console panel. Functional features: Good log viewing experience. Only the logs associated with you will be displayed, and the logs generated by others will not be exported to your dev tools. You can now view both the client and server side logs in the browser Console.
拡張機能の基本情報
名前 | |
ID | ghmhlknahaejhdlobgpaoocmjlhgmcci |
公式URL | https://chrome.google.com/webstore/detail/serverlog/ghmhlknahaejhdlobgpaoocmjlhgmcci |
説明 | Display server side logs in Chrome dev tools and browser Console. |
ファイルサイズ | 2.45 MB |
インストール数 | 29 |
現在のバージョン | 2.2.1 |
最終更新日 | 2019-10-09 |
公開日 | 2019-10-08 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Sky.Sun |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/eshengsky/ServerLog/tree/master/chrome-extension-server-log |
ヘルプページのURL | https://github.com/eshengsky/ServerLog/issues |
対応言語 | en-US,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ServerLog", "description": "__MSG_description__", "version": "2.2.1", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "serverlog.js" ], "run_at": "document_start" } ], "icons": { "19": "icon.png", "38": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "Server Log", "default_popup": "popup.html" }, "permissions": [ "storage", "tabs", "webRequest", "webRequestBlocking", "http:\/\/*\/", "https:\/\/*\/" ], "devtools_page": "devtools.html", "default_locale": "en_US", "manifest_version": 2 } |