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".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Turbo devtools

قم بتنزيل ملفات الامتداد Turbo devtools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}