Radar Analyzer Plugin

Radar Analyzer Plugin

This extension will make a radar analyze.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Radar Analyzer Plugin",
  "description": "This extension will make a radar analyze.",
  "author": "",
  "version": "1.0",
  "action": {
    "default_icon": "images/icon.png"
  },
  "icons": {
    "128": "images/icon.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://meet.google.com/",
    "http://fonts.googleapis.com/",
    "https://fonts.googleapis.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "fonts/*",
        "images/*.svg",
        "images/*.png",
        "party_img.svg",
        "icon.png"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ]
}