#1 Gmail Manager

#1 Gmail Manager

Manage your Gmail and get notifications, read, listen to or delete emails without opening Gmail. And personalize your homepage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_ext_name__",
  "version": "0.0.7",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "homepage_url": "https://www.dy1.com/",
  "author": "dy1.com",
  "browser_action": {
    "default_icon": "images/icons/icon48.png",
    "default_title": "__MSG_ext_name__"
  },
  "icons": {
    "16": "images/icons/icon16.png",
    "32": "images/icons/icon32.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "popup/gmail/tabletView.js",
        "js/content_script.js"
      ],
      "matches": [
        "*://*.dy1.com/*",
        "https://mail.google.com/mail/mu/mp/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "js/config.js",
      "js/jquery-3.4.1.min.js",
      "js/lib/addressparser.js",
      "js/gmail.js",
      "js/bookmark_manager.js",
      "js/account.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "alarms",
    "activeTab",
    "notifications",
    "https://mail.google.com/",
    "bookmarks",
    "history",
    "topSites"
  ],
  "web_accessible_resources": [
    "popup/gmail/gmail.html",
    "popup/gmail/tabletView.css"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}