Narrator +

Narrator +

Reads webpage content aloud with speech synthesis

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_popup": "popup.html?isPopup=1"
  },
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "forward": {
      "description": "forward",
      "suggested_key": {
        "default": "Alt+Period"
      }
    },
    "play": {
      "description": "play/pause",
      "suggested_key": {
        "default": "Alt+P"
      }
    },
    "rewind": {
      "description": "rewind",
      "suggested_key": {
        "default": "Alt+Comma"
      }
    },
    "stop": {
      "description": "stop",
      "suggested_key": {
        "default": "Alt+O"
      }
    }
  },
  "default_locale": "en",
  "description": "Reads webpage content aloud with speech synthesis",
  "host_permissions": [
    "https://translate.google.com/"
  ],
  "icons": {
    "16": "img/Logo.png",
    "48": "img/Logo.png",
    "128": "img/Logo.png"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "99",
  "name": "Narrator +",
  "optional_host_permissions": [
    "http://*/",
    "https://*/",
    "file://*/*"
  ],
  "optional_permissions": [
    "webRequest",
    "webNavigation"
  ],
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "identity",
    "offscreen",
    "scripting",
    "storage",
    "tts",
    "ttsEngine"
  ],
  "short_name": "_Narrator +",
  "version": "2.8.0",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "player.html",
        "sound/silence.mp3",
        "img/*"
      ],
      "use_dynamic_url": true
    }
  ]
}