Bionize

Bionize

Bionize tries to improve your reading experience with the power of Bionic Reading. Bionize can have a great impact on your reading…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bionize",
  "homepage_url": "https://bionize.app",
  "version": "1.3.0",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style-enforcement.css"
      ],
      "js": [
        "main.js",
        "global.js",
        "textReplacement.js",
        "storage.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "assets/state_inactive.png",
    "default_title": "Bionize"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "contextMenus",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "style-enforcement.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}