Redux DevTools
Redux DevTools for debugging application's state changes.
Redux DevToolsとは何ですか?
Redux DevToolsはRedux DevToolsによって開発されたChromeの拡張機能で、その主な機能は「Redux DevTools for debugging application's state changes.」です。
拡張機能のスクリーンショット
Redux DevTools拡張機能のCRXファイルをダウンロード
Redux DevTools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The extension provides power-ups for your Redux development workflow. Apart from Redux, it can be used with any other architectures which handle the state. This is an open source project. See the official repository for more details: https://github.com/reduxjs/redux-devtools
拡張機能の基本情報
名前 | Redux DevTools |
ID | lmhkpmbekcpmknklioeibfkpmmfibljd |
公式URL | https://chromewebstore.google.com/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd |
説明 | Redux DevTools for debugging application's state changes. |
ファイルサイズ | 1.79 MB |
インストール数 | 1,907,160 |
現在のバージョン | 3.1.6 |
最終更新日 | 2023-12-14 |
公開日 | 2018-12-19 |
評価 | 4.64/5 合計 691 レビュー |
開発者 | Redux DevTools |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/reduxjs/redux-devtools/tree/master/extension |
ヘルプページのURL | https://github.com/reduxjs/redux-devtools/issues |
対応言語 | en |
manifest.json | |
{ "version": "3.1.6", "name": "Redux DevTools", "description": "Redux DevTools for debugging application's state changes.", "homepage_url": "https:\/\/github.com\/reduxjs\/redux-devtools", "manifest_version": 2, "page_action": { "default_icon": "img\/logo\/gray.png", "default_title": "Redux DevTools", "default_popup": "window.html#popup" }, "commands": { "devtools-left": { "description": "DevTools window to left" }, "devtools-right": { "description": "DevTools window to right" }, "devtools-bottom": { "description": "DevTools window to bottom" }, "devtools-remote": { "description": "Remote DevTools" }, "_execute_page_action": { "suggested_key": { "default": "Ctrl+Shift+E" } } }, "icons": { "16": "img\/logo\/16x16.png", "48": "img\/logo\/48x48.png", "128": "img\/logo\/128x128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "background.bundle.js" ], "persistent": false }, "content_scripts": [ { "matches": [ " |