WebdriverIO Debugger
Start, Stop and step through WebdriverIO tests
什么是WebdriverIO Debugger?
WebdriverIO Debugger是由wpbrock开发的Chrome扩展程序,该扩展的主要功能是“Start, Stop and step through WebdriverIO tests”。
扩展截图
下载WebdriverIO Debugger扩展crx文件
下载WebdriverIO Debugger扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Pause, play and step through WebdriverIO tests 扩展基本信息
| 名称 | |
| ID | gllhbgehjoimdepaokeloljejokfdmof |
| 官方URL | https://chromewebstore.google.com/detail/webdriverio-debugger/gllhbgehjoimdepaokeloljejokfdmof |
| 简介 | Start, Stop and step through WebdriverIO tests |
| 文件大小 | 7.7 KB |
| 安装次数 | 32 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2019-07-17 |
| 上架时间 | 2019-07-13 |
| 开发者 | wpbrock |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "WebdriverIO Debugger",
"version": "0.0.1",
"description": "Start, Stop and step through WebdriverIO tests",
"permissions": [
"declarativeContent",
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_popup": "popup.html",
"default_icon": "images\/wdio-icon.png",
"default_title": "WebdriverIO Debugger"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https:\/\/*\/*"
]
}
],
"manifest_version": 2
} | |