ngprobe

Chrome Devetools Elements sidebar to displays Angular Component (pre-Ivy and Ivy) and AngularJS Scope for selected element i.e. $0

Что такое ngprobe?

ngprobe - это расширение Chrome, разработанное Sandip Chitale, и его основная функция - "Chrome Devetools Elements sidebar to displays Angular Component (pre-Ivy and Ivy) and AngularJS Scope for selected element i.e. $0".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения ngprobe

Скачайте файлы расширений ngprobe в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        How it works

The extension evaluates the following expression in the context of the page and displays the results in 'ngprobe' sidebar pane:

If Angular (Ivy) is detecetd:

```
    ng.getOwningComponent($0)

    where:

    $0 is the element selected in Elements tab.
```

If Angular (pre Ivy) is detecetd:

---
    ng.probe($0).componentInstance

    where:

    $0 is the element selected in Elements tab.
---

If AngularJS is detected:

---
    angular.element($0).scope()

    where:

    $0 is the element selected in Elements tab.
---

Also shows parent components or scopes as an array.

The values of component properties can be edited in the ngprobe sidebar pane.                    

Основная информация о расширении

Название ngprobe ngprobe
ID gdcplkgkgljpjkniblmomaholidjngoo
Официальный URL https://chromewebstore.google.com/detail/ngprobe/gdcplkgkgljpjkniblmomaholidjngoo
Описание Chrome Devetools Elements sidebar to displays Angular Component (pre-Ivy and Ivy) and AngularJS Scope for selected element i.e. $0
Размер файла 103 KB
Количество установок 449
Текущая Версия 1.0.6
Последнее Обновление 2020-10-28
Дата публикации 2020-04-12
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Sandip Chitale
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/sandipchitale/ngprobe
URL страницы помощи https://github.com/sandipchitale/ngprobe/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ngprobe",
    "version": "1.0.6",
    "description": "Chrome Devetools Elements sidebar to displays Angular Component (pre-Ivy and Ivy) and AngularJS Scope for selected element i.e. $0",
    "icons": {
        "128": "ngprobe128.png"
    },
    "devtools_page": "ngprobe.html",
    "manifest_version": 2
}