ChatCat

ChatCat

Chat Assistant to auto-suggest Canned Messages when chat on web version of Tinder, Bumble, WhatsApp, Wechat and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatCat",
  "description": "Chat Assistant to auto-suggest Canned Messages when chat on web version of Tinder, Bumble, WhatsApp, Wechat and more.",
  "version": "1.0",
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "*://*/",
    "file://*/*"
  ],
  "background": {
    "page": "./background_scripts/html/background.html"
  },
  "commands": {
    "save-canned-message": {
      "suggested_key": {
        "default": "Alt+K"
      },
      "description": "Save a canned message"
    },
    "quick-suggest-reply-on-selection": {
      "suggested_key": {
        "default": "Alt+L"
      },
      "description": "Quick Suggest Reply"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content_scripts/js/jquery.js",
        "./content_scripts/js/materialize.js",
        "./content_scripts/js/fuse.js",
        "./content_scripts/content_script.js"
      ],
      "css": [
        "./content_scripts/css/materialize.css",
        "./content_scripts/css/custom-toast.css",
        "./content_scripts/css/dropup.css"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/get_started16.png",
      "32": "images/get_started32.png",
      "48": "images/get_started48.png",
      "128": "images/get_started128.png"
    }
  },
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "manifest_version": 2
}