HearYe

HearYe

This addon sends allows you to convert articles to audio.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "default_locale": "en",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/translate.js",
      "js/background.js",
      "js/notify.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/bounce.css"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_action": {
    "default_title": "img/icon128.png"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "name": "__MSG_name__",
  "short_name": "__MSG_shortname__",
  "description": "__MSG_description__",
  "options_page": "option.html",
  "author": "Paul Lin and Georgiy Velchev and Peter Smith",
  "permissions": [
    "tabs",
    "activeTab",
    "notifications",
    "storage",
    "downloads",
    "contextMenus",
    "*://*/*"
  ],
  "version": "0.0.8",
  "manifest_version": 2,
  "web_accessible_resources": [
    "js/content.js",
    "css/bounce.css"
  ]
}