Turbo devtools
Easily locate turbo-frames with this simple developer tools for Turbo Frames
Hvad er Turbo devtools?
Turbo devtools er en Chrome-udvidelse udviklet af L Campanari, og dens hovedfunktion er "Easily locate turbo-frames with this simple developer tools for Turbo Frames".
Udvidelsesskærmbilleder
Download Turbo devtools-udvidelses-CRX-fil
Download Turbo devtools-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Turbo devtools |
ID | mbmcohillflnaeklgeoigcofknjfjgjn |
Officiel URL | https://chromewebstore.google.com/detail/turbo-devtools/mbmcohillflnaeklgeoigcofknjfjgjn |
Beskrivelse | Easily locate turbo-frames with this simple developer tools for Turbo Frames |
Filstørrelse | 10.41 KB |
Antal Installationer | 143 |
Nuværende Version | 0.0.2 |
Senest Opdateret | 2022-05-30 |
Udgivelsesdato | 2022-05-06 |
Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
Udvikler | L Campanari |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/lcampanari/turbo-devtools |
Hjælpeside-URL | https://github.com/lcampanari/turbo-devtools |
Understøttede Sprog | 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": [ "*:\/\/*\/*" ] } ] } |