Turbo devtools

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

What is Turbo devtools?

Turbo devtools is a Chrome extension developed by L Campanari, and its main feature is "Easily locate turbo-frames with this simple developer tools for Turbo Frames".

Extension Screenshots

screenshot

Download Turbo devtools Extension CRX File

Download Turbo devtools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Turbo devtools Turbo devtools
ID mbmcohillflnaeklgeoigcofknjfjgjn
Official URL https://chromewebstore.google.com/detail/turbo-devtools/mbmcohillflnaeklgeoigcofknjfjgjn
Description Easily locate turbo-frames with this simple developer tools for Turbo Frames
File Size 10.41 KB
Installation Count 143
Current Version 0.0.2
Last Updated 2022-05-30
Publish Date 2022-05-06
Rating 5.00/5 Total 4 Ratings
Developer L Campanari
Email [email protected]
Payment Type free
Extension Website https://github.com/lcampanari/turbo-devtools
Help Page URL https://github.com/lcampanari/turbo-devtools
Supported Languages 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}