Talk 2 Me

Talk 2 Me

Reads highlighted text in the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Talk 2 Me",
  "version": "1.0.0",
  "description": "Reads highlighted text in the browser.",
  "icons": {
    "16": "32.png",
    "32": "32.png",
    "64": "64.png",
    "128": "128.png"
  },
  "commands": {
    "exec_T2M": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "mac": "Command+Shift+Space"
      },
      "description": "Execute function"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "mac": "Command+Shift+1"
      },
      "description": "Execute function"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": {
      "32": "32.png"
    },
    "default_title": "Read highlighted text",
    "default_popup": "options.html"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ]
}