ToggleCode
An extension that converts browser interaction to selenium code for Python and Java
What is ToggleCode?
ToggleCode is a Chrome extension developed by DigitalMatic, and its main feature is "An extension that converts browser interaction to selenium code for Python and Java".
Extension Screenshots
Download ToggleCode Extension CRX File
Download ToggleCode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ToggleCode |
ID | njnmbjdjbmboaiagnaompgnglfmgfncl |
Official URL | https://chromewebstore.google.com/detail/togglecode/njnmbjdjbmboaiagnaompgnglfmgfncl |
Description | An extension that converts browser interaction to selenium code for Python and Java |
File Size | 349 KB |
Installation Count | 114 |
Current Version | 1.0.2 |
Last Updated | 2021-11-11 |
Publish Date | 2021-08-10 |
Rating | 5.00/5 Total 2 Ratings |
Developer | DigitalMatic |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |