Gmail Quick Links

Gmail Quick Links

A replacement for Gmail Quick Links. Adds a box to the left column that gives you 1-click access to any bookmarkable URL in Gmail. You can use it for saving frequent searches, important individual messages, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Gmail Quick Links",
  "version": "0.3.21",
  "description": "a replacement for Gmail Quick Links",
  "short_name": "Gmail Links",
  "icons": {
    "16": "./assets/icon16.png",
    "48": "./assets/icon48.png",
    "128": "./assets/icon48.png"
  },
  "author": "Kevin Wu <[email protected]>",
  "homepage_url": "https://github.com/kevinwucodes/gmail-quick-links",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "css": [
        "default.css"
      ],
      "js": [
        "react.js",
        "react-dom.js",
        "dist.gmailquicklinks.bundle.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage"
  ]
}