Geto Data

Geto Data

Extract Data from any website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Geto Data",
  "description": "Extract Data from any website",
  "version": "1.0.4",
  "manifest_version": 3,
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Geto Data",
    "default_icon": "icon.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/app",
      "http://localhost:3000/"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon.png",
        "cross.png",
        "rightArrow.png",
        "options.png",
        "close.png",
        "unchecked.png",
        "checked.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}