Echo Go - Amazon Alexa in your Browser

Echo Go - Amazon Alexa in your Browser

Amazon Alexa, the powerful virtual assistant in your browser. It can play music, answer your questions and control your smart home.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "version": "1.1",
  "short_name": "Echo Go",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "https://localhost:9745/authresponse",
    "https://access-alexa-na.amazon.com/v1/avs/speechrecognizer/recognize",
    "https://api.amazonalexa.com/v3/events",
    "https://api.amazon.com/auth/o2/token"
  ],
  "content_scripts": [
    {
      "js": [
        "autofill.js"
      ],
      "matches": [
        "https://na.account.amazon.com/ap/signin?*"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "bundle.js",
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "scripts/*.js",
    "static/*"
  ]
}