RespoAI

RespoAI

RespoAI is a browser extension that helps you create thoughtful and effective responses with the click of a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RespoAI",
  "description": "RespoAI is a browser extension that helps you create thoughtful and effective responses with the click of a button. ",
  "version": "1.0.4",
  "manifest_version": 3,
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    },
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "linkedinScript.js"
      ]
    },
    {
      "matches": [
        "https://www.reddit.com/*"
      ],
      "js": [
        "redditScript.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "action": {
    "default_title": "RespoAi",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/icons/respo16.png",
      "32": "/icons/respo32.png",
      "48": "/icons/respo48.png",
      "128": "/icons/respo128.png"
    }
  },
  "icons": {
    "16": "/icons/respo16.png",
    "32": "/icons/respo32.png",
    "48": "/icons/respo48.png",
    "128": "/icons/respo128.png"
  }
}