CRMTiger - Gmail Plugin for vTiger CRM

CRMTiger - Gmail Plugin for vTiger CRM

CRMTiger Extension for vTiger help you to connect Gmail email and transform it to Lead/contact/organisation/vendor in vTiger CRM

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CRMTiger - Gmail Plugin for vTiger CRM",
  "short_name": "VIPL",
  "description": "CRMTiger Extension for vTiger help you to connect Gmail email and transform it to Lead/contact/organisation/vendor in vTiger CRM",
  "version": "2.7",
  "action": {
    "default_title": "vTiger CRM",
    "default_icon": "icon.png",
    "default_popup": "./layout/html/popup/ctc-vipl-popup.html"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "service_worker": "backgroud-js/ctc-vipl-background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "libs/jquery.min.js",
        "libs/select2.min.js",
        "libs/md5.js",
        "libs/jquery-ui.js",
        "libs/jquery.timepicker.min.js",
        "libs/gmail.js",
        "libs/inboxsdk.js",
        "js/ctc-vipl-loader.js",
        "js/ctc-vipl-alert.js",
        "common/ctc-vipl-constant.js",
        "common/ctc-vipl-custom-local-storage.js",
        "common/ctc-vipl-custom-chrome-storage.js",
        "common/ctc-vipl-user-helper.js",
        "common/ctc-vipl-gmail-helper.js",
        "common/ctc-vipl-element-creator.js",
        "js/ctc-vipl-login.js",
        "js/ctc-vipl-comments.js",
        "js/ctc-vipl-summery.js",
        "js/ctc-vipl-contact.js",
        "js/ctc-vipl-quick-create.js",
        "js/ctc-vipl-tracking-smry.js",
        "js/ctc-vipl-content-script.js"
      ],
      "css": [
        "layout/css/ctc-vipl-main.css",
        "layout/css/select2.min.css",
        "layout/css/jquery-ui.css",
        "layout/css/jquery.timepicker.min.css",
        "layout/css/bootstrap-select.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.linkedin.com/*"
      ],
      "js": [
        "libs/jquery.min.js",
        "js/ctc-vipl-linkedin-cnt-script.js"
      ]
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "libs/jquery.min.js",
        "js/ctc-vipl-facebook-cnt-script.js"
      ]
    },
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "libs/jquery.min.js",
        "js/ctc-vipl-twitter-cnt-script.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "scripting",
    "webRequest",
    "declarativeNetRequest"
  ],
  "content_security_policy": {
    "extension_page": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "layout/html/ctc-vipl-dashboard.html",
        "layout/img/logo.png",
        "layout/img/loader.gif",
        "layout/css/ctc-vipl-rtl.css",
        "layout/img/user.png",
        "layout/html/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ]
}