Gmail reverse conversation

Gmail reverse conversation

Gmail reverse conversation view. Do you like newest message on the top in conversation view? Now you can do it with this simple addon. No javascript, css only. Also works in new Gmail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_icon": {
      "48": "img/icon_48.png"
    },
    "default_title": "Gmail reverse conversation"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/gmail-reverse-conversation.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "The addon which reverse emails in conversation view.",
  "icons": {
    "24": "img/icon_24.png",
    "48": "img/icon_48.png"
  },
  "manifest_version": 2,
  "name": "Gmail reverse conversation",
  "version": "0.0.8resigned1",
  "web_accessible_resources": [
    "js/gmail-reverse-conversation.js",
    "img/*.png",
    "css/gmail-reverse-conversation.css"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{10df04ee-bbe3-4748-91e1-681b747a0420}"
    }
  }
}