Sender Icons for Gmail™

Sender Icons for Gmail™

Add a sender icon for all emails in your Gmail inbox.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "0.1.3",
  "manifest_version": 2,
  "offline_enabled": true,
  "permissions": [
    "storage"
  ],
  "name": "Sender Icons for Gmail™",
  "short_name": "sender-icons-for-gmail",
  "description": "Add a sender icon for all emails in your Gmail inbox.",
  "homepage_url": "https://mybrowseraddon.com/sender-icons-for-gmail.html",
  "background": {
    "persistent": false,
    "scripts": [
      "lib/config.js",
      "lib/chrome.js",
      "lib/runtime.js",
      "lib/common.js"
    ]
  },
  "browser_action": {
    "default_title": "Sender Icons for Gmail™",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "*://*.mail.google.com/*"
      ],
      "js": [
        "data/content_script/inject.js"
      ]
    }
  ],
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  }
}