isheet

isheet

Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "isheet",
  "description": "Scrape web data (HTML table or other list like fragments) and convert it to an excel like sheet",
  "version": "2.4.1",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "css/fontawesome.min.css",
        "css/regular.min.css",
        "css/solid.min.css",
        "css/material-icons.css"
      ],
      "js": [
        "packages/jsuites/jsuites.js",
        "packages/jexcel/jexcel.js",
        "main.js"
      ]
    }
  ],
  "action": {
    "default_icon": "icon19.png",
    "default_popup": "menu.html"
  },
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "style.css",
        "*.png",
        "packages/*/*.css",
        "css/*",
        "fonts/*",
        "fonts/fa-webfonts/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}