Dwebox

Dwebox

Email group manager for Gmail, Yahoo & Outlook

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dwebox",
  "manifest_version": 2,
  "version": "1.2.6",
  "description": "Email group manager for Gmail, Yahoo & Outlook",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/mail/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.yahoo.com/d/*"
      ],
      "js": [
        "yahoo.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://outlook.live.com/mail/*",
        "https://outlook.office.com/mail/*",
        "https://outlook.office365.com/mail/*"
      ],
      "js": [
        "outlook.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon32.png"
  },
  "background": {
    "scripts": [
      "sendEmail.js"
    ]
  },
  "permissions": [
    "storage",
    "notifications",
    "https://api.gumroad.com/v2/licenses/*"
  ]
}