AI Reply to Google Reviews

AI Reply to Google Reviews

AI-powered reply to Google reviews chrome extension. Free & Premium services available.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AI Reply to Google Reviews",
  "version": "1.16",
  "description": "AI-powered reply to Google reviews chrome extension. Free & Premium services available.",
  "manifest_version": 3,
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "service_worker": "sw.js"
  },
  "permissions": [
    "storage",
    "identity",
    "notifications"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "host_permissions": [
    "https://*.google.com/*",
    "https://reply.reviews/*"
  ],
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "https://*.google.com/*"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "css": [
        "styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "login.html"
      ],
      "matches": [
        "https://*.google.com/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "oauth2": {
    "client_id": "393391502551-pakkp09bg5u8donfq8k40g0ntjjobrnr.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "profile",
      "email"
    ]
  },
  "options_page": "options.html"
}