Outside Sound
Applies a filter to currently playing audio and makes it sound like you have left the room.
什么是Outside Sound?
Outside Sound是由thezanke开发的Chrome扩展程序,该扩展的主要功能是“Applies a filter to currently playing audio and makes it sound like you have left the room.”。
扩展截图
下载Outside Sound扩展crx文件
下载Outside Sound扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        When activated, creates a lowpass filter node in the HTML5 Audio API sound graph and routes the sound from all  扩展基本信息
| 名称 |  | 
| ID | lebiilodohbecpcjkjfekdeckepapieh | 
| 官方URL | https://chromewebstore.google.com/detail/outside-sound/lebiilodohbecpcjkjfekdeckepapieh | 
| 简介 | Applies a filter to currently playing audio and makes it sound like you have left the room. | 
| 文件大小 | 9.54 KB | 
| 安装次数 | 94 | 
| 当前版本 | 1.0.2 | 
| 更新时间 | 2020-10-19 | 
| 上架时间 | 2020-10-08 | 
| 评分 | 5.00/5 共9次评分 | 
| 开发者 | thezanke | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 扩展官网 | https://alexhoward.io | 
| 支持的语言 | en | 
| 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"
            ]
        }
    ]
} | |