A+ FontSize Changer

A+ FontSize Changer

Extension that lets the user customize the font text size, font type, font color and background color on a page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "__MSG_shortName__",
  "author": "Jeff Baker",
  "version": "1.5.1",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "images/fsicon16.png",
    "48": "images/fsicon48.png",
    "128": "images/fsicon128.png"
  },
  "commands": {
    "up": {
      "suggested_key": {
        "default": "Alt+Up"
      },
      "description": "__MSG_increase__"
    },
    "down": {
      "suggested_key": {
        "default": "Alt+Down"
      },
      "description": "__MSG_decrease__"
    }
  },
  "permissions": [
    "scripting",
    "identity",
    "identity.email",
    "tabs",
    "storage",
    "unlimitedStorage",
    "activeTab"
  ],
  "host_permissions": [
    "*://www.seabreezecomputers.com/*",
    "*://seabreezecomputers.com/*",
    "*://192.168.1.5/*",
    "<all_urls>"
  ],
  "action": {
    "default_icon": "images/fsicon38.png",
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "fontsize2.js",
        "storage.js"
      ],
      "css": [],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}