Turbo devtools

Easily locate turbo-frames with this simple developer tools for Turbo Frames

Was ist Turbo devtools?

Turbo devtools ist eine Chrome-Erweiterung, die von L Campanari entwickelt wurde, und ihr Hauptmerkmal ist "Easily locate turbo-frames with this simple developer tools for Turbo Frames".

Erweiterungsscreenshots

screenshot

Turbo devtools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Turbo devtools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This tool is meant to facilitate debugging Turbo Frames by highlighting  HTML 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                    

Grundlegende Informationen zur Erweiterung

Name Turbo devtools Turbo devtools
ID mbmcohillflnaeklgeoigcofknjfjgjn
Offizielle URL https://chromewebstore.google.com/detail/turbo-devtools/mbmcohillflnaeklgeoigcofknjfjgjn
Beschreibung Easily locate turbo-frames with this simple developer tools for Turbo Frames
Dateigröße 10.41 KB
Installationsanzahl 143
Aktuelle Version 0.0.2
Letztes Update 2022-05-30
Veröffentlichungsdatum 2022-05-06
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler L Campanari
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/lcampanari/turbo-devtools
Hilfeseite URL https://github.com/lcampanari/turbo-devtools
Unterstützte Sprachen 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}