Red Typography

Red Typography

Typography in text fields.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "1.4.0",
  "default_locale": "en",
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "commands": {
    "typograf-key": {
      "suggested_key": {
        "default": "Alt+Shift+T"
      },
      "description": "__MSG_commandShortcut__"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "popup/browser.js",
        "content.js"
      ]
    }
  ],
  "action": {
    "browser_style": true,
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "64": "icons/64.png"
    }
  },
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png"
  }
}