Gridman - front-end toolkit

Gridman - front-end toolkit

Swiss army knife for front-end developers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "2.3.2",
  "manifest_version": 3,
  "homepage_url": "https://fenvox.com/gridman",
  "default_locale": "en",
  "icons": {
    "16": "icon/icon-gridman-16.png",
    "32": "icon/icon-gridman-32.png",
    "48": "icon/icon-gridman-48.png",
    "96": "icon/icon-gridman-96.png",
    "128": "icon/icon-gridman-128.png"
  },
  "action": {
    "default_title": "Start Gridman"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://*.youtube.com/*",
        "*://*.youtu.be/*"
      ],
      "js": [
        "src/inject/main.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/fonts/*",
        "/icon/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "src/service-workers/index.js",
    "type": "module"
  }
}