FlyMSG: AI Writer & Autofill Text Expander

FlyMSG: AI Writer & Autofill Text Expander

AI Writer & Autofill Text Expander App. Write, Expand, & Engage Everywhere!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_EXTENSION_NAME__",
  "short_name": "__MSG_EXTENSION_SHORTNAME__",
  "version": "3.4.14",
  "manifest_version": 2,
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "96": "images/icon-96.png"
  },
  "default_locale": "en",
  "offline_enabled": true,
  "background": {
    "scripts": [
      "vendor/scripts/jquery.min.js",
      "scripts/constants/constants.js",
      "scripts/services/storage.service.js",
      "scripts/services/data.service.js",
      "scripts/services/shortcut.service.js",
      "scripts/services/auth.interceptor.js",
      "scripts/background/backgroundInstall.js",
      "scripts/background/backgroundMessages.js",
      "scripts/background/backgroundTabs.js",
      "scripts/background/backgroundOmnibox.js",
      "scripts/background/backgroundContextMenu.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "alarms",
    "storage",
    "unlimitedStorage",
    "<all_urls>",
    "notifications",
    "clipboardRead",
    "clipboardWrite",
    "management",
    "contextMenus",
    "activeTab"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://localhost:*/*",
      "*://app.vengreso.com/*",
      "*://romeo.smartlybuilt.com/*",
      "*://34.194.79.173/*",
      "*://api.openai.com/*",
      "*://synapze.vengreso.com/*",
      "*://synapze2.vengreso.com/*",
      "*://staging-synapze2.vengreso.com/*",
      "*://staging-app.vengreso.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "vendor/scripts/jquery.min.js",
        "vendor/scripts/moment-with-locales.min.js",
        "vendor/scripts/runtime.js",
        "scripts/constants/constants.js",
        "scripts/content/expander.js",
        "scripts/content/expanderCopy.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://calendar.google.com/*",
        "https://docs.google.com/*",
        "https://us-partner-integrations.egnyte.com/gdocs/*",
        "https://*/force.com/*"
      ],
      "js": [
        "scripts/script.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://mail.google.com/mail/*",
        "https://www.linkedin.com/*",
        "https://outlook.office.com/mail/*",
        "https://outlook.live.com/*",
        "https://outlook/*"
      ],
      "match_about_blank": true,
      "js": [
        "/static/js/content.js"
      ],
      "css": [
        "/css/root.css",
        "/css/themes/main-theme.css",
        "/css/themes/dark-theme.css",
        "/css/components/flyTutorial.css"
      ],
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "images/logo.png",
    "images/extension-ss.jpg",
    "images/extension.svg",
    "scripts/script.js",
    "scripts/test.js",
    "/static/css/content.css",
    "/static/media/*",
    "images/*",
    "images/tutorial/*",
    "/css/themes/main-theme.css",
    "/css/themes/dark-theme.css",
    "/css/components/flyTutorial.css"
  ],
  "omnibox": {
    "keyword": "__MSG_KEYWORD_OMNIBAR_TRIGGER__"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "48": "images/icon-48.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_BROWSER_ACTION_TITLE__"
  },
  "content_security_policy": "script-src 'self' 'unsafe-inline' 'unsafe-eval'"
}