only-all-replay

only-all-replay

This extension exists mainly to remove reply for gmail. Because most of the time, when you communicate with someone via gmail, you…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "only-all-replay",
  "manifest_version": 3,
  "version": "0.1",
  "icons": {
    "48": "icon-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}