GMBspy

GMBspy

Allows viewing of Google Business Profile, Google My Business "Categories" for single listings or top 20 Google search results.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GMBspy",
  "description": "Allows viewing of Google Business Profile, Google My Business \"Categories\" for single listings or top 20 Google search results.",
  "version": "3.01",
  "options_ui": {
    "page": "options.html"
  },
  "action": {
    "default_icon": {
      "16": "images/gmb_logo16.png",
      "32": "images/gmb_logo32.png",
      "48": "images/gmb_logo48.png",
      "128": "images/gmb_logo128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/gmb_logo16.png",
    "32": "images/gmb_logo32.png",
    "48": "images/gmb_logo48.png",
    "128": "images/gmb_logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/service_worker.js",
    "type": "module"
  },
  "permissions": [
    "declarativeContent",
    "storage",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}