My Canned Responses

My Canned Responses

Create and manage your canned response templates easily on Gmail, Github, Stackoverflow, Outlook, UpWork and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "My Canned Responses",
  "version": "1.0.0",
  "author": "Ali Khallad",
  "description": "Create and manage your canned response templates easily on Gmail, Github, Stackoverflow, Outlook, UpWork and more.",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "*://app.codeable.io/tasks/*",
    "*://outlook.live.com/mail/*",
    "*://mail.google.com/*",
    "*://github.com/*",
    "*://upwork.com/*",
    "*://www.upwork.com/*",
    "*://stackoverflow.com/*",
    "*://chat.openai.com/*"
  ],
  "icons": {
    "16": "assets/icons/icon16.png",
    "24": "assets/icons/icon24.png",
    "32": "assets/icons/icon32.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://app.codeable.io/tasks/*",
        "*://outlook.live.com/mail/*",
        "*://mail.google.com/*",
        "*://github.com/*",
        "*://upwork.com/*",
        "*://www.upwork.com/*",
        "*://stackoverflow.com/*",
        "*://chat.openai.com/*"
      ],
      "js": [
        "assets/js/min/content.min.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; font-src 'self';"
  },
  "action": {
    "default_icon": "assets/icons/icon48.png",
    "default_popup": "popup.html",
    "default_title": "My Canned Responses"
  },
  "background": {
    "service_worker": "assets/js/min/background.min.js"
  }
}