@ttaché: The Gmail Attachments Manager

@ttaché: The Gmail Attachments Manager

@ttaché helps you quickly and easily locate important attachments in Gmail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "@ttaché: The Gmail Attachments Manager",
  "version": "0.1.8",
  "description": "@ttaché helps you quickly and easily locate important attachments in Gmail.",
  "permissions": [
    "identity",
    "storage",
    "*://*.google.com/*"
  ],
  "oauth2": {
    "client_id": "632087533527-pepuqj7ba9pjd65dt5aug8m2ms48v8vi.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/gmail.readonly"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ],
      "js": [
        "inboxsdk.js",
        "mp.js",
        "axios.js",
        "vue.js",
        "lodash.js",
        "moment.min.js",
        "app.js"
      ],
      "css": [
        "app.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "attach-logo.png",
    "attach-logo-circle.png",
    "loading.gif",
    "icons/*.svg",
    "icons/file.png"
  ],
  "icons": {
    "128": "attache-logo.png"
  }
}