ToggleCode
An extension that converts browser interaction to selenium code for Python and Java
ToggleCode là gì?
ToggleCode là một tiện ích mở rộng Chrome được phát triển bởi DigitalMatic, và tính năng chính của nó là "An extension that converts browser interaction to selenium code for Python and Java".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ToggleCode
Tải xuống các tệp mở rộng ToggleCode dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ToggleCode |
ID | njnmbjdjbmboaiagnaompgnglfmgfncl |
URL Chính Thức | https://chromewebstore.google.com/detail/togglecode/njnmbjdjbmboaiagnaompgnglfmgfncl |
Mô tả | An extension that converts browser interaction to selenium code for Python and Java |
Kích Thước Tệp | 349 KB |
Số Lần Cài Đặt | 114 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2021-11-11 |
Ngày Phát Hành | 2021-08-10 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | DigitalMatic |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |