ServerLog
Display server side logs in Chrome dev tools and browser Console.
ServerLog là gì?
ServerLog là một tiện ích mở rộng Chrome được phát triển bởi Sky.Sun, và tính năng chính của nó là "Display server side logs in Chrome dev tools and browser Console.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ServerLog
Tải xuống các tệp mở rộng ServerLog dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ghmhlknahaejhdlobgpaoocmjlhgmcci |
URL Chính Thức | https://chrome.google.com/webstore/detail/serverlog/ghmhlknahaejhdlobgpaoocmjlhgmcci |
Mô tả | Display server side logs in Chrome dev tools and browser Console. |
Kích Thước Tệp | 2.45 MB |
Số Lần Cài Đặt | 29 |
Phiên Bản Hiện Tại | 2.2.1 |
Cập Nhật Lần Cuối | 2019-10-09 |
Ngày Phát Hành | 2019-10-08 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Sky.Sun |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/eshengsky/ServerLog/tree/master/chrome-extension-server-log |
URL Trang Trợ Giúp | https://github.com/eshengsky/ServerLog/issues |
Ngôn Ngữ Được Hỗ Trợ | 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 } |