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 |
Eメール | [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" ] } ] } |