C-PEN Connect (BT10)

C-PEN Connect (BT10)

This Chrome extension connects to C-Pen Connect, and can be used for assistive text reading as well as general text capture.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "C-PEN Connect (BT10)",
  "short_name": "C-PEN BT10",
  "description": "This Chrome extension connects to C-Pen Connect, and can be used for assistive text reading as well as general text capture.",
  "version": "1.0.0",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "app/background.js"
    ]
  },
  "browser_action": {},
  "icons": {
    "16": "/static/media/c-logo-16.png",
    "48": "/static/media/c-logo-48.png",
    "128": "/static/media/c-logo-128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tts"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "/static/css/content.css",
        "/static/css/app.css"
      ],
      "js": [
        "/static/js/0.chunk.js",
        "/static/js/3.chunk.js",
        "/static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/static/css/content.css",
    "/static/css/app.css"
  ],
  "content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self'"
}