Map Elements

Map Elements

Extensão para o google chrome, com finalidade de buscar elementos com id ou name e converter em elementos para o selenium.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Map Elements",
  "version": "1.5",
  "description": "Extensão para o google chrome, com finalidade de buscar elementos com id ou name e converter em elementos para o selenium.",
  "keywords ": [
    "map-elements",
    "rpa",
    "test-automation"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "declarativeContent",
    "activeTab"
  ],
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com  https://cdnjs.cloudflare.com https://apis.google.com https://maxcdn.bootstrapcdn.com; object-src 'self'",
  "homepage_url": "https://map-elements.web.app/",
  "options_page": "options/options.html",
  "page_action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "images/get_started16.png",
      "32": "images/get_started32.png",
      "48": "images/get_started64.png",
      "128": "images/get_started128.png"
    }
  },
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "64": "images/get_started64.png",
    "128": "images/get_started128.png"
  },
  "manifest_version": 2
}