Wiki Readifyer

Wiki Readifyer

Makes Wikipedia articles pleasantly readable. Nothing more. Nothing less.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wiki Readifyer",
  "short_name": "Wiki Readifyer",
  "version": "1.4.4",
  "description": "Makes Wikipedia articles pleasantly readable. Nothing more. Nothing less.",
  "author": "David Maier",
  "incognito": "split",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*.wikipedia.org/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "styles/style.css"
      ],
      "matches": [
        "*://*.wikipedia.org/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "128": "images/128.png",
      "512": "images/512.png"
    }
  },
  "icons": {
    "128": "images/128.png",
    "512": "images/512.png"
  },
  "permissions": [
    "storage"
  ]
}