A+ FontSize Changer Pro

A+ FontSize Changer Pro

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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "__MSG_shortName__",
  "author": "Jeff Baker",
  "version": "1.5.1",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4McGpANprxkDjMg/+CFRBqSWkwyqS/+MXWlq8i/p6+o3xIXnidLevhhDzXy4wxoc83bssGGSfikZHjLIi5KJIAuKX+0ROaM2Mnzf60LPbtAtfGKeYqHFtSCf4yrnbPi0t6wljH7xYxdrpFwO1tqZzRLOenj9U56hYfp6plOn7yw4Lcj6HVt0Y/VA3c821o5RhYhTiTkXtStSnDx6Xqoy/yrLdQ0VyCmgq2IFk3+qxJxSDEvhVy0dR5+//VzOFZAvt+P8WjV33HIIjdBZpwqHMxb/NVyqqjfhyLvCt4cThEsqYMzhcl5hn3k3PnfqPAsIo+IY8Nq5FKmjcKf4sv4DFwIDAQAB",
  "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>"
  ],
  "oauth2": {
    "client_id": "858786907520-hj0s92ik60kjaqi5j1v1o9ro6gcqgpls.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/chromewebstore.readonly"
    ]
  },
  "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"
    }
  ]
}