Antisuppression Reading Bars

Antisuppression Reading Bars

Produces customizable reading bars over browser window for antisuppression vision therapy supplement

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Antisuppression Reading Bars",
  "version": "0.1.3",
  "manifest_version": 3,
  "description": "Produces customizable reading bars over browser window for antisuppression vision therapy supplement",
  "background": {
    "service_worker": "service_worker.js"
  },
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "128": "./images/icon_128.png"
  },
  "action": {
    "default_title": "toggle reading bars",
    "default_icon": "./images/icon.png"
  },
  "content_security_policy": {
    "extension_pages": "default-src 'none'; style-src 'self'; media-src 'none'; child-src 'none'; connect-src 'none'; script-src 'self'; img-src 'self'; object-src 'none'"
  },
  "offline_enabled": true,
  "minimum_chrome_version": "103",
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ]
}