Fexcel

Fexcel

For excellent excel experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Fexcel",
  "version": "1.3.0",
  "description": "For excellent excel experience.",
  "permissions": [
    "scripting"
  ],
  "host_permissions": [
    "https://docs.google.com/spreadsheets/d/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/spreadsheets/d/*"
      ],
      "js": [
        "./script/alert.js"
      ]
    },
    {
      "matches": [
        "https://docs.google.com/spreadsheets/u/*"
      ],
      "js": [
        "./script/template.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "action": {
    "default_popup": "app/index.html",
    "default_title": "Fexcel"
  }
}