Home Voice History

Home Voice History

A browser extension to scan and collect data from Google Home history.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Home Voice History",
  "description": "A browser extension to scan and collect data from Google Home history.",
  "version": "1.0",
  "type": "module",
  "permissions": [
    "tabs",
    "storage",
    "declarativeContent",
    "downloads",
    "https://myactivity.google.com/myactivity?pli=1&product=31"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "16": "images/home.png"
    },
    "default_title": "Google Home History",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://unpkg.com; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}