Re:format Gmail inline replies

Re:format Gmail inline replies

Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Re:format Gmail inline replies",
  "description": "Reply to long emails point-by-point.  Highlight text, press a button, and the quote shows up in your compose window.",
  "version": "0.0.12",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "inboxsdk.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "https://mail.google.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "button_q.png"
  ],
  "icons": {
    "128": "icons_128_resized_from_website.png"
  },
  "commands": {
    "QUOTE": {
      "suggested_key": {
        "default": "Ctrl+Shift+B",
        "linux": "Ctrl+Shift+B",
        "mac": "Ctrl+Shift+B",
        "windows": "Ctrl+Shift+B"
      },
      "description": "Quote by keyboard."
    }
  },
  "manifest_version": 2
}