Acessibility for All

Acessibility for All

Extension to improve the accessibility of any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "default_locale": "pt_BR",
  "short_name": "Deixe o seu site preferido com sua cara",
  "version": "1.1.5",
  "manifest_version": 2,
  "description": "__MSG_appDesc__",
  "browser_action": {
    "default_icon": {
      "16": "img/icon16.png",
      "24": "img/icon24.png",
      "32": "img/icon32.png"
    },
    "default_title": "Acessibilidade para todos"
  },
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.min.js",
        "js/app.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "app.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "web_accessible_resources": [
    "app.css"
  ]
}