Outside Sound

Outside Sound

Applies a filter to currently playing audio and makes it sound like you have left the room.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Outside Sound",
  "version": "1.0.2",
  "manifest_version": 2,
  "description": "Applies a filter to currently playing audio and makes it sound like you have left the room.",
  "homepage_url": "https://alexhoward.io",
  "icons": {
    "128": "icons/icon128-outside.png"
  },
  "browser_action": {
    "default_icon": "icons/icon128-inside.png",
    "default_title": "Step outside ->"
  },
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "src/inject.js"
      ]
    }
  ]
}