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 | 
| Eメール | [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"
            ]
        }
    ]
} | |