ToggleCode

ToggleCode

An extension that converts browser interaction to selenium code for Python and Java

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}