Natural Reader Text to Speech

Natural Reader Text to Speech

Listen to webpages, PDF, Email, Google Docs, or any other web content.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": true,
    "scripts": [
      "background/const.js",
      "background/chromeRuntimeMessage.js",
      "background/storage.js",
      "background/pdf.js",
      "background/script-injector.js",
      "background/utils.js",
      "background/voices.js",
      "background/widget.js",
      "background/extension.js",
      "background/alert-handler.js",
      "libs/compromise.min.js",
      "background/pe.js",
      "background/tts-text.js",
      "background/tts.js",
      "background/reader.js",
      "background/auth.js",
      "background/context.js",
      "background/convert.js",
      "background/prorate.js",
      "background/capture.js",
      "background/ocr.js",
      "background/amplify-auth.js",
      "background/amplify-auth-config.js"
    ]
  },
  "browser_action": {},
  "commands": {
    "forward": {
      "description": "Next",
      "suggested_key": {
        "default": "Alt+Down"
      }
    },
    "goToTabBeingRead": {
      "description": "Go to Tab Being Read"
    },
    "play": {
      "description": "Read/Pause",
      "suggested_key": {
        "default": "Alt+R"
      }
    },
    "readSelection": {
      "description": "Read Selection"
    },
    "rewind": {
      "description": "Previous",
      "suggested_key": {
        "default": "Alt+Up"
      }
    },
    "speaker": {
      "description": "Speaker",
      "suggested_key": {
        "default": "Alt+S"
      }
    },
    "stop": {
      "description": "Stop"
    },
    "toggleShowReadIcon": {
      "description": "Toggle Show Read Selection Icon"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "libs/docs-html-fallback.js"
      ],
      "matches": [
        "https://docs.google.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "injected/nr-ext-immersive-reader/reader.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Listen to webpages, PDF, Email, Google Docs, or any other web content.",
  "externally_connectable": {
    "matches": [
      "*://*.naturalreaders.com/*"
    ]
  },
  "icons": {
    "32": "assets/img/natreader.png",
    "48": "assets/img/[email protected]",
    "128": "assets/img/[email protected]"
  },
  "manifest_version": 2,
  "name": "Natural Reader Text to Speech",
  "permissions": [
    "<all_urls>",
    "activeTab",
    "contextMenus",
    "storage",
    "tts",
    "webNavigation",
    "webRequestBlocking",
    "webRequest"
  ],
  "version": "4.2.3",
  "web_accessible_resources": [
    "assets/*",
    "injected/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}