Salesforza Gmail Mail Merge & CRM on GSheets

Salesforza Gmail Mail Merge & CRM on GSheets

Chrome Extension CRM for Gmail leveraging Google Sheets with ability to create mail merges

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.50",
  "manifest_version": 3,
  "name": "__MSG_appNameGmail__",
  "description": "__MSG_appDescGmail__",
  "default_locale": "en",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_appIconTitleGmail__",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "identity",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://mail.google.com/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "/lib/browser-polyfill.js",
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/icon-34.png",
        "/icon-sharedocview-34.png",
        "/1.png",
        "/2.png",
        "/3.png",
        "/[email protected]"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "commands": {
    "syncRowCommand": {
      "suggested_key": "Ctrl+Shift+1",
      "description": "Sync Row"
    },
    "toggleSideBar": {
      "suggested_key": "Ctrl+Shift+2",
      "description": "Toggle Extension Sidebar"
    },
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+E",
        "mac": "Command+Shift+E",
        "chromeos": "Ctrl+Shift+E",
        "linux": "Ctrl+Shift+E"
      }
    }
  },
  "oauth2": {
    "client_id": "958294554786-hm2mooggqpvgba8u8ucg674h19araddn.apps.googleusercontent.com",
    "scopes": [
      "profile",
      "email",
      "https://www.googleapis.com/auth/gmail.compose",
      "https://www.googleapis.com/auth/drive.file"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvmUjCXPP/bZREND9x9zYP7VnQ1ofbH0YRmXf5aoANnoPyjskxWR/pbwxp5pHePYPwKiSs0hk8CZenb/6Y9wurngnfEHGLYxdPCfl4mjNCHhZ1haAjROguabsXM+u+MkruKtH9Q27sUuNx+RqW62U5o77YJgiP/0GOXi7Ecg/l2YO3HJhnGrl/lftAtQi7sHidjeDNSP0+nKSRQhwQPEA6LMmXI23tqoRn+U8/lfSAnNDWQ/8lSCDLPI9eZaM96VOsbaIpM5yr72Qv0bRkhU/PlQWGyPRs6gd4jGexIGN76QsV9tE+/2EKG+xtU8IMbHmoZEJYBBrcRVJHMYhNGqJ8wIDAQAB"
}