Closure Tools DevTools

DevTools for Google Closure Tools

ما هو Closure Tools DevTools؟

Closure Tools DevTools هو إضافة Chrome تم تطويرها بواسطة mugi_uno، والميزة الرئيسية لها هي "DevTools for Google Closure Tools".

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

screenshot

تحميل ملف CRX للإضافة Closure Tools DevTools

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

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

                        Chrome extension for debugging Google Closure Tools applications.

This extension provides the following functions.

- Check the correspondence between components inheriting from "goog.ui.Component" and screen elements.
- Tracing the execution of a "dispatchEvent" in a class that inherits from "goog.events.EventTarget".

Before you can start using it, you need to prepare it in your application code.

Please refer to the README in the following repository.
https://github.com/mugi-uno/closure-tools-devtools                    

معلومات أساسية عن التمديد

الاسم Closure Tools DevTools Closure Tools DevTools
ID ccppdkklnjdncedigaakkicpncehojbp
عنوان URL الرسمي https://chromewebstore.google.com/detail/closure-tools-devtools/ccppdkklnjdncedigaakkicpncehojbp
الوصف DevTools for Google Closure Tools
حجم الملف 108 KB
عدد التثبيتات 77
النسخة الحالية 2.0
آخر تحديث 2022-08-31
تاريخ النشر 2021-07-09
المطور mugi_uno
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/mugi-uno/closure-tools-devtools
عنوان صفحة المساعدة https://github.com/mugi-uno/closure-tools-devtools
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Closure Tools DevTools",
    "description": "DevTools for Google Closure Tools",
    "version": "2.0",
    "manifest_version": 3,
    "icons": {
        "16": "icon-16x16.png",
        "48": "icon-48x48.png",
        "128": "icon-128x128.png"
    },
    "devtools_page": "devtools.html",
    "permissions": [],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "setupDevTools.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}