Troubadour - web reader

Troubadour - web reader

Instantly read aloud web content with text-to-speech. Watch and listen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Troubadour - web reader",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "version": "1.9.0",
  "manifest_version": 3,
  "icons": {
    "16": "icons/speaker-on_16.png",
    "48": "icons/speaker-on_48.png",
    "128": "icons/speaker-on_128.png"
  },
  "permissions": [
    "storage",
    "tts",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": "icons/speaker-on_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "widget.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "matches": [
      "https://troubadour.ai/*",
      "http://127.0.0.1:8000/*",
      "http://localhost:3000/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "widget.html",
        "lang.json",
        "playback.html",
        "popup.html",
        "icons/speaker-on_128.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "gmmlllglkamkhhabeedldmickphfifhp",
        "mojkclddjbciilajchadljngchlgfapp"
      ]
    }
  ],
  "commands": {
    "play-pause": {
      "suggested_key": {
        "windows": "Ctrl+Shift+P",
        "mac": "Command+Shift+P",
        "chromeos": "Ctrl+Shift+P",
        "linux": "Ctrl+Shift+P"
      },
      "description": "Play/pause"
    },
    "backward": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Left",
        "mac": "Command+Shift+Left",
        "chromeos": "Ctrl+Shift+Left",
        "linux": "Ctrl+Shift+Left"
      },
      "description": "Backward"
    },
    "forward": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Right",
        "mac": "Command+Shift+Right",
        "chromeos": "Ctrl+Shift+Right",
        "linux": "Ctrl+Shift+Right"
      },
      "description": "Forward"
    },
    "stop": {
      "suggested_key": {
        "windows": "Ctrl+Shift+S",
        "mac": "Command+Shift+S",
        "chromeos": "Ctrl+Shift+S",
        "linux": "Ctrl+Shift+S"
      },
      "description": "Stop"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}