Reverse Conversation for Gmail™

Reverse Conversation for Gmail™

This browser extension which reverse emails in conversation view.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_popup": "pages/popup.html",
    "default_title": "__MSG_browserActionTitle__"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDescription__",
  "homepage_url": "https://reverse-conversation.freespeedcheck.net/",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "offline_enabled": true,
  "permissions": [
    "storage"
  ],
  "short_name": "__MSG_appShortName__",
  "version": "3.0.0",
  "web_accessible_resources": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "resources": [
        "styles/content-style.css"
      ]
    }
  ]
}