Content Scaler

Content Scaler

This extension scales HTML content if the width of viewport was fixed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Content Scaler",
  "description": "This extension scales HTML content if the width of viewport was fixed.",
  "version": "1.0.9",
  "icons": {
    "16": "image/icon/16.png",
    "64": "image/icon/64.png"
  },
  "page_action": {
    "default_icon": "image/icon/16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "file://*/*"
      ],
      "exclude_matches": [
        "https://www.smbc-card.com/*"
      ],
      "js": [
        "js/jquery-3.2.1.min.js",
        "js/content_scripts.js"
      ],
      "run_at": "document_start"
    }
  ]
}