Format Copier

Format Copier

A format painter for Gmail. Copies a text format and applies that format to other text.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "version": "3.2",
  "author": "Alex Collivas",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "alarms",
    "identity",
    "identity.email"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "host_permissions": [
    "https://backend.formatpainter.com/*",
    "https://ipinfo.io/*"
  ],
  "commands": {
    "GetTextStyle": {
      "suggested_key": {
        "default": "Alt+C"
      },
      "description": "__MSG_command_AltC__"
    },
    "SetTextStyle": {
      "suggested_key": {
        "default": "Alt+V"
      },
      "description": "__MSG_command_AltV__"
    }
  },
  "icons": {
    "16": "/img/icon16.png",
    "32": "/img/icon32.png",
    "48": "/img/icon48.png",
    "128": "/img/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "/img/icon16.png",
      "32": "/img/icon32.png",
      "48": "/img/icon48.png",
      "128": "/img/icon128.png"
    },
    "default_title": "__MSG_extension_name__",
    "default_popup": "popup.html"
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3
}