SmartReplier - AI powered reply assistance

SmartReplier - AI powered reply assistance

SmartReplier is an AI-powered reply assistant that helps professionals craft high quality responses to emails and LinkedIn post

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SmartReplier - AI powered reply assistance",
  "description": "SmartReplier is an AI-powered reply assistant that helps professionals craft high quality responses to emails and LinkedIn post",
  "version": "1.0.9",
  "author": "qhkdmdev90",
  "version_name": "1.0.9 beta",
  "action": {
    "default_icon": "icon.png",
    "default_title": "smartreplier",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "cookies",
    "storage"
  ],
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "128": "icon.png"
  },
  "host_permissions": [
    "*://*.google.com/",
    "https://smartreplier.com/*",
    "https://linkedin.com/*",
    "https://outlook.live.com/*",
    "https://*.outlook.live.com/*",
    "https://*.outlook.office.com/*",
    "https://*.outlook.office365.com/*",
    "https://*.outlook.com/*",
    "*://twitter.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "popup.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "open-modal": {
      "suggested_key": {
        "default": "Ctrl+E",
        "mac": "Command+E"
      },
      "description": "Open smartreplier modal on current page."
    },
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+E",
        "mac": "Command+E",
        "chromeos": "Ctrl+E",
        "linux": "Ctrl+E"
      }
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon.png",
        "white-bg.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}