ServerLog
Display server side logs in Chrome dev tools and browser Console.
ServerLogคืออะไร?
ServerLog เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sky.Sun และคุณลักษณะหลักของมันคือ "Display server side logs in Chrome dev tools and browser Console."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ServerLog
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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 } |