Webutler.AI - AI powered web scraper

Webutler.AI - AI powered web scraper

Webutler.AI uses AI to predict which data is most relevant on a HTML page and allows saving it to Excel.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "short_name": "Webutler.AI",
  "description": "__MSG_extDesc__",
  "version": "1.0.4",
  "author": "__MSG_extAuthor__",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "static/icons/webutler16.png",
    "48": "static/icons/webutler48.png",
    "128": "static/icons/webutler128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "19": "static/icons/webutler16.png",
      "38": "static/icons/webutler48.png"
    },
    "default_title": "__MSG_extName__"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/static/js/jquery-3.5.1.min.js",
        "/static/js/jQuery.drag.js",
        "/content/client/index.js"
      ],
      "css": [
        "/content/client/index.css"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
  },
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    {
      "resources": [
        "/static/**",
        "/content/iframe/**",
        "options/options.html**",
        "/content/**"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}