Dyslexia Reader Chrome

Dyslexia Reader Chrome

Change webpage styling for better readability

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dyslexia Reader Chrome",
  "short_name": "DRC",
  "description": "Change webpage styling for better readability",
  "version": "4.0.0",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "js/background.js",
      "js/inject.js",
      "js/jquery-2.1.4.min.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "manifest_version": 2
}