GoodReply | AI-responder for customer reviews

GoodReply | AI-responder for customer reviews

Reply magically to your customer reviews 10 times faster with GoodReply

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GoodReply | AI-responder for customer reviews",
  "description": "Reply magically to your customer reviews 10 times faster with GoodReply",
  "version": "0.3",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://goodreply.ai/*"
      ],
      "exclude_matches": [
        "https://goodreply.ai/bob"
      ],
      "js": [
        "CustomJavaScript/customScript1.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/16x16.png",
      "32": "images/32x32.png",
      "48": "images/48x48.png",
      "128": "images/128x128.png"
    }
  },
  "icons": {
    "16": "images/16x16.png",
    "32": "images/32x32.png",
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ]
}