Gmail Move-To-Top Attachment

Gmail Move-To-Top Attachment

Automatically moves Gmail email attachments to the top of the email for a better experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gmail Move-To-Top Attachment",
  "description": "Automatically moves Gmail email attachments to the top of the email for a better experience",
  "version": "1.1",
  "manifest_version": 3,
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "arrive.min.js",
        "script.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}