Turbo devtools
Easily locate turbo-frames with this simple developer tools for Turbo Frames
Turbo devtoolsคืออะไร?
Turbo devtools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย L Campanari และคุณลักษณะหลักของมันคือ "Easily locate turbo-frames with this simple developer tools for Turbo Frames"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Turbo devtools
ดาวน์โหลดไฟล์ส่วนขยาย Turbo devtools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This tool is meant to facilitate debugging Turbo Frames by highlightingHTML tags in the active page. If tags are present in the page, invoking the extension will highlight those tags with a red border and an identifier. Inspired by this tweet by Matt Swanson: https://twitter.com/_swanson/status/1486482689741971463
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Turbo devtools |
ID | mbmcohillflnaeklgeoigcofknjfjgjn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/turbo-devtools/mbmcohillflnaeklgeoigcofknjfjgjn |
คำอธิบาย | Easily locate turbo-frames with this simple developer tools for Turbo Frames |
ขนาดไฟล์ | 10.41 KB |
จำนวนการติดตั้ง | 143 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2022-05-30 |
วันที่เผยแพร่ | 2022-05-06 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | L Campanari |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/lcampanari/turbo-devtools |
URL หน้าช่วยเหลือ | https://github.com/lcampanari/turbo-devtools |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Turbo devtools", "version": "0.0.2", "description": "Easily locate turbo-frames with this simple developer tools for Turbo Frames", "manifest_version": 3, "icons": { "16": "assets\/icon\/16x16.png", "32": "assets\/icon\/32x32.png", "48": "assets\/icon\/48x48.png" }, "action": [], "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "turbo-frame\/debug.css" ], "matches": [ "*:\/\/*\/*" ] } ] } |