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
擴展基本資訊
名稱 | WebdriverIO Debugger |
ID | gllhbgehjoimdepaokeloljejokfdmof |
官方網址 | 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 } |