Turbo devtools

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

什么是Turbo devtools?

Turbo devtools是由L Campanari开发的Chrome扩展程序,该扩展的主要功能是“Easily locate turbo-frames with this simple developer tools for Turbo Frames”。

扩展截图

screenshot

下载Turbo devtools扩展crx文件

下载Turbo devtools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Turbo devtools 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}