ngprobe

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

ngprobeとは何ですか?

ngprobeはSandip Chitaleによって開発されたChromeの拡張機能で、その主な機能は「Chrome Devetools Elements sidebar to displays Angular Component (pre-Ivy and Ivy) and AngularJS Scope for selected element i.e. $0」です。

拡張機能のスクリーンショット

screenshot
screenshot

ngprobe拡張機能のCRXファイルをダウンロード

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
Eメール [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
}