Excel Transformation Tool

Excel Transformation Tool

A Chrome Plugin to bring JavaScript functionalities to Google spreadsheets and Microsoft Excel

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Excel Transformation Tool",
  "version": "0.1.5",
  "description": "A Chrome Plugin to bring JavaScript functionalities to Google spreadsheets and Microsoft Excel",
  "options_page": "src/pages/options/index.html",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  },
  "sandbox": {
    "pages": [
      "src/pages/sandbox/index.html"
    ]
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "Logo-cropped-light-black-bg-250.png"
  },
  "icons": {
    "250": "Logo-cropped-light-black-bg-250.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "run_at": "document_start",
      "css": [
        "assets/css/contentStyle16836382375.chunk.css"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "run_at": "document_start",
      "css": [
        "assets/css/contentStyle16836382375.chunk.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "Logo-cropped-light-black-bg-250.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}