Out Loud Extension

Out Loud Extension

Read your writing out loud

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Out Loud Extension",
  "author": "TreesWithLeaves",
  "short_name": "Out Loud",
  "version": "1.1.9",
  "description": "Read your writing out loud",
  "permissions": [
    "identity",
    "clipboardRead",
    "contextMenus",
    "https://*.execute-api.us-east-1.amazonaws.com/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_icon": "assets/logoOutLoud_48.png",
    "default_popup": "index.html",
    "default_title": "Out Loud Extension"
  },
  "icons": {
    "16": "assets/logoOutLoud_16.png",
    "48": "assets/logoOutLoud_48.png",
    "128": "assets/logoOutLoud.png"
  },
  "background": {
    "scripts": [
      "assets/jquery.min.js",
      "backgroundPage.js"
    ],
    "persistent": false
  }
}