ToggleCode
An extension that converts browser interaction to selenium code for Python and Java
什么是ToggleCode?
ToggleCode是由DigitalMatic开发的Chrome扩展程序,该扩展的主要功能是“An extension that converts browser interaction to selenium code for Python and Java”。
扩展截图
下载ToggleCode扩展crx文件
下载ToggleCode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows users to click on an html element on a web page and converts the select item to Selenium code for Python or Java. It is a quick way to create a workflow automation by referencing the xpath of the selected elements. Get working by clicking Start , load webpage and select your elements for code generation. Version 1.0.2 includes bug fixes.
扩展基本信息
名称 | ToggleCode |
ID | njnmbjdjbmboaiagnaompgnglfmgfncl |
官方URL | https://chromewebstore.google.com/detail/togglecode/njnmbjdjbmboaiagnaompgnglfmgfncl |
简介 | An extension that converts browser interaction to selenium code for Python and Java |
文件大小 | 349 KB |
安装次数 | 114 |
当前版本 | 1.0.2 |
更新时间 | 2021-11-11 |
上架时间 | 2021-08-10 |
评分 | 5.00/5 共2次评分 |
开发者 | DigitalMatic |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ToggleCode", "version": "1.0.2", "description": "An extension that converts browser interaction to selenium code for Python and Java", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "activeTab" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/file_32.png", "64": "images\/file_64.png" } }, "icons": { "16": "images\/file_32.png", "64": "images\/file_64.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "contentScript.js" ] } ] } |