Successive - Accessibility

Successive - Accessibility

The web accessibility tool which will allow you to use more than 10 accessibility features at one place

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Successive - Accessibility ",
  "description": "The web accessibility tool which will allow you to use more than 10 accessibility features at one place",
  "version": "1.5.0",
  "action": {
    "default_icon": "assets/img/icon-128.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "assets/img/icon-128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/img/arrows/*.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "assets/js/jquery-3.6.0.min.js"
      ],
      "css": [
        "assets/css/inject.css"
      ],
      "run_at": "document_start"
    }
  ],
  "oauth2": {
    "client_id": "916031298766-8aq6ev8did104ge0h5kr9spj7l9c3urb.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self' 'https://apis.google.com/' 'https://www.gstatic.com/' 'https://*.firebaseio.com' 'https://www.googleapis.com' 'https://ajax.googleapis.com'; object-src 'self'"
  }
}