Columns

Columns

Read your websites more relaxed with automatic columns for wide content.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Columns",
  "short_name": "columns",
  "description": "Read your websites more relaxed with automatic columns for wide content.",
  "author": "Daniel Unterberger",
  "version": "1.19",
  "manifest_version": 3,
  "options_page": "options.html",
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "name": "Click to turn columns on or off"
  },
  "icons": {
    "16": "icon128.png",
    "48": "icon128.png",
    "128": "icon128.png"
  }
}