Gmail Archive Button

Add an archive button to gmail
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Add an archive button to gmail",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "manifest_version": 2,
  "name": "Gmail Archive Button",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/mail/*"
      ],
      "js": [
        "archive-button.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "archive-button.js",
    "archive.png"
  ],
  "permissions": [
    "tabs"
  ],
  "short_name": "Gmail Archive",
  "version": "0.0.1"
}